Skip to content

Clone of Intro to Deep Learning (6.S191) repository with labs assignments

License

Notifications You must be signed in to change notification settings

Carmezim/MIT-6.S191

Repository files navigation

6.S191 Labs

Lab 1: Intro to Tensorflow and MLP's for Sentiment Analysis

Lab 1 can be found at 6.S191-Lab1.ipynb.

Lab 2: LSTM's for Sequence Modeling

Lab 2 can be found at 6.S191-Lab2.ipynb.

Running the labs

The labs are jupyter notebooks, so run jupyter notebook in this directory, and then click on the proper file name in jupyter to open it.

Install Instructions

Please copy the following commands to your bash terminal:

Pip Instructions

If you are using pip:

git clone https://github.com/yala/introdeeplearning;
cd introdeeplearning;
pip install virtualenv;
virtualenv intro_dl;
source intro_dl/bin/activate;
pip install --upgrade pip;
pip install tensorflow;
pip install matplotlib;
pip install pandas;
pip install jupyter;
echo 'done';
jupyter notebook

Conda Instructions

git clone https://github.com/yala/introdeeplearning;
cd introdeeplearning;
conda create -n intro_dl;
source activate intro_dl;
conda install -c conda-forge tensorflow;
pip install matplotlib;
pip install pandas;
conda install jupyter;
echo 'done';
jupyter notebook

If you don't have git

About

Clone of Intro to Deep Learning (6.S191) repository with labs assignments

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages