├── LICENSE ├── README.md ├── Section 2 ├── __pycache__ │ ├── prep.cpython-36.pyc │ └── train.cpython-36.pyc ├── imagenet1000_clsid_to_human.txt ├── img_data │ ├── b1.jpg │ ├── b2.jpg │ ├── b3.jpg │ ├── nob1.jpg │ ├── nob2.jpg │ └── nob3.jpg ├── img_data_urls.txt ├── predict.py ├── prep.py └── train.py ├── Section 3 ├── .DS_Store ├── __pycache__ │ ├── prep.cpython-36.pyc │ └── train.cpython-36.pyc ├── data │ ├── README.txt │ ├── labels.csv │ ├── urls.txt │ ├── x_test.txt │ ├── x_train.txt │ ├── y_test.txt │ └── y_train.txt ├── data_url.txt ├── model.ckpt ├── predict.py ├── prep.py └── train.py ├── Section 4 └── source │ ├── __pycache__ │ ├── prep.cpython-36.pyc │ └── train.cpython-36.pyc │ ├── data │ ├── _about.txt │ └── spa.txt │ ├── prep.py │ ├── train.py │ └── translate.py └── Section 5 ├── __pycache__ └── prep.cpython-36.pyc ├── images ├── ania_photo1.jpg ├── style_ania1.jpg ├── style_ania2.jpg └── style_ania3.jpg ├── images_credits.txt ├── output_images ├── 1+1-4-128.jpg ├── 1+2-4-512.jpg └── 2+1-4-128.jpg ├── prep.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /Section 2/__pycache__/prep.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/__pycache__/prep.cpython-36.pyc -------------------------------------------------------------------------------- /Section 2/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /Section 2/imagenet1000_clsid_to_human.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/imagenet1000_clsid_to_human.txt -------------------------------------------------------------------------------- /Section 2/img_data/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data/b1.jpg -------------------------------------------------------------------------------- /Section 2/img_data/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data/b2.jpg -------------------------------------------------------------------------------- /Section 2/img_data/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data/b3.jpg -------------------------------------------------------------------------------- /Section 2/img_data/nob1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data/nob1.jpg -------------------------------------------------------------------------------- /Section 2/img_data/nob2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data/nob2.jpg -------------------------------------------------------------------------------- /Section 2/img_data/nob3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data/nob3.jpg -------------------------------------------------------------------------------- /Section 2/img_data_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/img_data_urls.txt -------------------------------------------------------------------------------- /Section 2/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/predict.py -------------------------------------------------------------------------------- /Section 2/prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/prep.py -------------------------------------------------------------------------------- /Section 2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 2/train.py -------------------------------------------------------------------------------- /Section 3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/.DS_Store -------------------------------------------------------------------------------- /Section 3/__pycache__/prep.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/__pycache__/prep.cpython-36.pyc -------------------------------------------------------------------------------- /Section 3/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /Section 3/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/README.txt -------------------------------------------------------------------------------- /Section 3/data/labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/labels.csv -------------------------------------------------------------------------------- /Section 3/data/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/urls.txt -------------------------------------------------------------------------------- /Section 3/data/x_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/x_test.txt -------------------------------------------------------------------------------- /Section 3/data/x_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/x_train.txt -------------------------------------------------------------------------------- /Section 3/data/y_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/y_test.txt -------------------------------------------------------------------------------- /Section 3/data/y_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/data/y_train.txt -------------------------------------------------------------------------------- /Section 3/data_url.txt: -------------------------------------------------------------------------------- 1 | https://zenodo.org/record/841984#.W9HFHS97FQI 2 | -------------------------------------------------------------------------------- /Section 3/model.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/model.ckpt -------------------------------------------------------------------------------- /Section 3/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/predict.py -------------------------------------------------------------------------------- /Section 3/prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/prep.py -------------------------------------------------------------------------------- /Section 3/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 3/train.py -------------------------------------------------------------------------------- /Section 4/source/__pycache__/prep.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/__pycache__/prep.cpython-36.pyc -------------------------------------------------------------------------------- /Section 4/source/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /Section 4/source/data/_about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/data/_about.txt -------------------------------------------------------------------------------- /Section 4/source/data/spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/data/spa.txt -------------------------------------------------------------------------------- /Section 4/source/prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/prep.py -------------------------------------------------------------------------------- /Section 4/source/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/train.py -------------------------------------------------------------------------------- /Section 4/source/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 4/source/translate.py -------------------------------------------------------------------------------- /Section 5/__pycache__/prep.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/__pycache__/prep.cpython-36.pyc -------------------------------------------------------------------------------- /Section 5/images/ania_photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/images/ania_photo1.jpg -------------------------------------------------------------------------------- /Section 5/images/style_ania1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/images/style_ania1.jpg -------------------------------------------------------------------------------- /Section 5/images/style_ania2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/images/style_ania2.jpg -------------------------------------------------------------------------------- /Section 5/images/style_ania3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/images/style_ania3.jpg -------------------------------------------------------------------------------- /Section 5/images_credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/images_credits.txt -------------------------------------------------------------------------------- /Section 5/output_images/1+1-4-128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/output_images/1+1-4-128.jpg -------------------------------------------------------------------------------- /Section 5/output_images/1+2-4-512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/output_images/1+2-4-512.jpg -------------------------------------------------------------------------------- /Section 5/output_images/2+1-4-128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/output_images/2+1-4-128.jpg -------------------------------------------------------------------------------- /Section 5/prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/prep.py -------------------------------------------------------------------------------- /Section 5/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Deep-Learning-Adventures-with-PyTorch/HEAD/Section 5/train.py --------------------------------------------------------------------------------