├── .gitignore ├── README.md ├── Variational Autoencoder Tutorial.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | data 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Installation 2 | ------------ 3 | 4 | ```bash 5 | virtualenv venv 6 | source venv/bin/activate 7 | # Install appropriate PyTorch package for your distro from pytorch.org 8 | pip install http://download.pytorch.org/whl/torch-0.1.10.post1-cp36-cp36m-macosx_10_7_x86_64.whl 9 | pip install -r requirements.txt 10 | jupyter nbextension enable --py widgetsnbextension 11 | jupyter notebook 12 | ``` 13 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | appdirs==1.4.3 2 | appnope==0.1.0 3 | bleach==2.0.0 4 | cycler==0.10.0 5 | decorator==4.0.11 6 | entrypoints==0.2.2 7 | html5lib==0.999999999 8 | ipykernel==4.5.2 9 | ipython==5.3.0 10 | ipython-genutils==0.2.0 11 | ipywidgets==6.0.0 12 | Jinja2==2.9.5 13 | jsonschema==2.6.0 14 | jupyter==1.0.0 15 | jupyter-client==5.0.0 16 | jupyter-console==5.1.0 17 | jupyter-core==4.3.0 18 | MarkupSafe==1.0 19 | matplotlib==2.0.0 20 | mistune==0.7.4 21 | nbconvert==5.1.1 22 | nbformat==4.3.0 23 | notebook==4.4.1 24 | numpy==1.12.1 25 | olefile==0.44 26 | packaging==16.8 27 | pandas==0.19.2 28 | pandocfilters==1.4.1 29 | pexpect==4.2.1 30 | pickleshare==0.7.4 31 | Pillow==4.0.0 32 | prompt-toolkit==1.0.13 33 | ptyprocess==0.5.1 34 | Pygments==2.2.0 35 | pyparsing==2.2.0 36 | python-dateutil==2.6.0 37 | pytz==2016.10 38 | PyYAML==3.12 39 | pyzmq==16.0.2 40 | qtconsole==4.2.1 41 | scipy==0.19.0 42 | seaborn==0.7.1 43 | simplegeneric==0.8.1 44 | six==1.10.0 45 | terminado==0.6 46 | testpath==0.3 47 | torch==0.1.10.post1 48 | torchvision==0.1.7 49 | tornado==4.4.2 50 | tqdm==4.11.2 51 | traitlets==4.3.2 52 | wcwidth==0.1.7 53 | webencodings==0.5 54 | widgetsnbextension==2.0.0 55 | --------------------------------------------------------------------------------