All Projects → dpressel → Mead Baseline

dpressel / Mead Baseline

Licence: apache-2.0
Deep-Learning Model Exploration and Development for NLP

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mead Baseline

Text Classification Models Pytorch
Implementation of State-of-the-art Text Classification Models in Pytorch
Stars: ✭ 379 (+59.24%)
Mutual labels:  classification, convolutional-neural-networks, recurrent-neural-networks, seq2seq
Rmdl
RMDL: Random Multimodel Deep Learning for Classification
Stars: ✭ 375 (+57.56%)
Mutual labels:  classification, convolutional-neural-networks, recurrent-neural-networks
Komputation
Komputation is a neural network framework for the Java Virtual Machine written in Kotlin and CUDA C.
Stars: ✭ 295 (+23.95%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks, seq2seq
Malware Classification
Towards Building an Intelligent Anti-Malware System: A Deep Learning Approach using Support Vector Machine for Malware Classification
Stars: ✭ 88 (-63.03%)
Mutual labels:  classification, convolutional-neural-networks, recurrent-neural-networks
Cnn Svm
An Architecture Combining Convolutional Neural Network (CNN) and Linear Support Vector Machine (SVM) for Image Classification
Stars: ✭ 170 (-28.57%)
Mutual labels:  classification, convolutional-neural-networks
Tensorflow 101
TensorFlow Tutorials
Stars: ✭ 2,565 (+977.73%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Coursera Deep Learning Specialization
Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models
Stars: ✭ 188 (-21.01%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Lingvo
Lingvo
Stars: ✭ 2,361 (+892.02%)
Mutual labels:  seq2seq, language-model
Awesome Speech Recognition Speech Synthesis Papers
Automatic Speech Recognition (ASR), Speaker Verification, Speech Synthesis, Text-to-Speech (TTS), Language Modelling, Singing Voice Synthesis (SVS), Voice Conversion (VC)
Stars: ✭ 2,085 (+776.05%)
Mutual labels:  seq2seq, language-model
Keras English Resume Parser And Analyzer
keras project that parses and analyze english resumes
Stars: ✭ 192 (-19.33%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Relational Rnn Pytorch
An implementation of DeepMind's Relational Recurrent Neural Networks in PyTorch.
Stars: ✭ 236 (-0.84%)
Mutual labels:  recurrent-neural-networks, language-model
Deep News Summarization
News summarization using sequence to sequence model with attention in TensorFlow.
Stars: ✭ 167 (-29.83%)
Mutual labels:  recurrent-neural-networks, seq2seq
Brain.js
brain.js is a GPU accelerated library for Neural Networks written in JavaScript.
Stars: ✭ 12,358 (+5092.44%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Hdltex
HDLTex: Hierarchical Deep Learning for Text Classification
Stars: ✭ 191 (-19.75%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Tfvos
Semi-Supervised Video Object Segmentation (VOS) with Tensorflow. Includes implementation of *MaskRNN: Instance Level Video Object Segmentation (NIPS 2017)* as part of the NIPS Paper Implementation Challenge.
Stars: ✭ 151 (-36.55%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Protein Sequence Embedding Iclr2019
Source code for "Learning protein sequence embeddings using information from structure" - ICLR 2019
Stars: ✭ 194 (-18.49%)
Mutual labels:  recurrent-neural-networks, language-model
Iseebetter
iSeeBetter: Spatio-Temporal Video Super Resolution using Recurrent-Generative Back-Projection Networks | Python3 | PyTorch | GANs | CNNs | ResNets | RNNs | Published in Springer Journal of Computational Visual Media, September 2020, Tsinghua University Press
Stars: ✭ 202 (-15.13%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks
Cnn 3d Images Tensorflow
3D image classification using CNN (Convolutional Neural Network)
Stars: ✭ 199 (-16.39%)
Mutual labels:  classification, convolutional-neural-networks
Attention Mechanisms
Implementations for a family of attention mechanisms, suitable for all kinds of natural language processing tasks and compatible with TensorFlow 2.0 and Keras.
Stars: ✭ 203 (-14.71%)
Mutual labels:  recurrent-neural-networks, language-model
Im2latex Tensorflow
Tensorflow implementation of the HarvardNLP paper - What You Get Is What You See: A Visual Markup Decompiler (https://arxiv.org/pdf/1609.04938v1.pdf)
Stars: ✭ 207 (-13.03%)
Mutual labels:  convolutional-neural-networks, recurrent-neural-networks

MEAD

MEAD is a library for reproducible deep learning research and fast model development for NLP. It provides easily extensible abstractions and implementations for data loading, model development, training, experiment tracking and export to production.

It also provides implementations of high-performance deep learning models for various NLP tasks, against which newly developed models can be compared. Deep learning experiments are hard to reproduce, MEAD provides functionalities to track them. The goal is to allow a researcher to focus on model development, delegating the repetitive tasks to the library.

Documentation

Tutorials using Colab

MEAD Hub

Installation

Pip

Baseline can be installed as a Python package.

pip install mead-baseline

If you are using tensorflow 2 as your deep learning backend you will need to have tensorflow_addons already installed or have it get installed directly with:

pip install mead-baseline[tf2]

Note for TF 2.1 users: If you are using TF 2.1, you cannot just pip install tensorflow_addons (or the command above) -- it will pull a version that is dependent on a more recent version with breaking changes. If you are running TF 2.1, use a pinned version of the addons: pip install tensorflow_addons==0.9.1

From the repository

If you have a clone of this repostory and want to install from it:

cd layers
pip install -e .
cd ../
pip install -e .

This first installs mead-layers AKA 8 mile, a tiny layers API containing PyTorch and TensorFlow primitives, locally and then mead-baseline

Dockerhub

We use Github CI/CD to automatically cut releases for TensorFlow (1.x and 2.x) and PyTorch via this project:

https://github.com/mead-ml/mead-gpu

Links to the latest dockerhub images can be found there

A Note About Versions

Deep Learning Frameworks are evolving quickly and changes are not always backwards compatible. We recommend recent versions of whichever framework is being used underneath. We currently run on TF versions between 1.13 and 2.3, and we recommend using at least TF 2.1. The PyTorch backend requires at least version 1.3.0, though we recommend using a more recent version.

Citing

If you use the library, please cite the following paper:

@InProceedings{W18-2506,
  author =    "Pressel, Daniel
               and Ray Choudhury, Sagnik
               and Lester, Brian
               and Zhao, Yanjie
               and Barta, Matt",
  title =     "Baseline: A Library for Rapid Modeling, Experimentation and
               Development of Deep Learning Algorithms targeting NLP",
  booktitle = "Proceedings of Workshop for NLP Open Source Software (NLP-OSS)",
  year =      "2018",
  publisher = "Association for Computational Linguistics",
  pages =     "34--40",
  location =  "Melbourne, Australia",
  url =       "http://aclweb.org/anthology/W18-2506"
}

MEAD was selected for a Spotlight Poster at the NeurIPS MLOSS workshop in 2018. OpenReview link

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].