This repository was archived by the owner on Sep 25, 2024. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork9
rossumai/mlprague18-nlp
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
First, for the 2019 update visit
http://tinyurl.com/mlprague19-slides
which also has links to two colab notebooks with the 2019 edition of this workshop.
- Please come with a working Python installation that includes:
- Jupyter notebook server
- Packages: Tensorflow (1.5.0; GPU not required!), Keras (2.1.5), NLTK (3.2.5)
- Detailed instructions:
- Linux, MacOSX:
- create a Python virtual environment by running the following in terminal:
pip install virtualenvvirtualenv --system-site-packages pymlpraguesource pymlprague/bin/activatepip install tensorflow==1.5.0 keras==2.1.5 nltk==3.2.5 jupyter
- create a Python virtual environment by running the following in terminal:
- MacOSX, Windows:
- If you don’t have Python installed you can download andinstall Anaconda
- You can then create a virtual environment with command line:
conda create -n pymlprague tensorflow=1.5.0 keras=2.1.5 nltk=3.2.5 jupytersource activate pymlprague
- You can find detailed steps for Keras and Tensorflow under the following links, just in case:
- Linux, MacOSX:
- (Note that we will assume basic familiarity with Python.)
- Download big data required for the experiments you will be doing:
- https://nlp.stanford.edu/data/glove.6B.zip
- http://ai.stanford.edu/~amaas/data/sentiment/aclImdb_v1.tar.gz
- python -m nltk.downloader semcor punkt perluniprops
- Movie Reviews Sentiment Classification:IMDB Sentiment.ipynb
- Capital Letters Recognition:uppercase.ipynb