You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resources and notebook for ["Deep Learning and Modern NLP" Workshop](https://pydata.org/miami2019/schedule/presentation/19/) for PyData Miami 2019
3
+
4
+
## Environment Setup
5
+
6
+
This tutorial requires an existing installation of [Anaconda 3](https://www.anaconda.com/download/#macos) (tested with Python 3.6). From the root directory of the repo, run:
7
+
8
+
```
9
+
conda env create -f environment.yml
10
+
source activate deep-learning-nlp
11
+
```
12
+
13
+
## Datasets used in Tutorials
14
+
Data for these tutorials are sourced from various locations, and prepared in advance into pickled Pandas DataFrames. The original sources of the data can be found in the links below.
15
+
16
+
* Perceptron
17
+
* [Stanford Large Movie Review Dataset](http://ai.stanford.edu/~amaas/data/sentiment/)
* [R8 of Reuters 21578](https://www.cs.umb.edu/~smimarog/textmining/datasets/)
21
+
* Part of Speech Tagging
22
+
* Sample of the [Penn Treebank](https://corochann.com/penn-tree-bank-ptb-dataset-introduction-1456.html) dataset from the [NLTK Corpora](http://www.nltk.org/nltk_data/)
23
+
* Machine Translation
24
+
* [European Parliament Proceedings Parallel Corpus 1996-2011](http://www.statmt.org/europarl/)
0 commit comments