├── .gitignore ├── LICENSE ├── README.md ├── file ├── Dimensionality_Reduction.pdf ├── How_To_Train_a_GAN.pdf ├── Mathematics-Cookbook.pdf ├── Style Transfer.pdf ├── 딥러닝 이론에서 실습까지.pdf └── 수포자를 위한 머신러닝.pdf └── init.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/README.md -------------------------------------------------------------------------------- /file/Dimensionality_Reduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/file/Dimensionality_Reduction.pdf -------------------------------------------------------------------------------- /file/How_To_Train_a_GAN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/file/How_To_Train_a_GAN.pdf -------------------------------------------------------------------------------- /file/Mathematics-Cookbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/file/Mathematics-Cookbook.pdf -------------------------------------------------------------------------------- /file/Style Transfer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/file/Style Transfer.pdf -------------------------------------------------------------------------------- /file/딥러닝 이론에서 실습까지.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/file/딥러닝 이론에서 실습까지.pdf -------------------------------------------------------------------------------- /file/수포자를 위한 머신러닝.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/Awesome-DeepLearning-Study/HEAD/file/수포자를 위한 머신러닝.pdf -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- 1 | """ 2 | Author 3 | 4 | Junho Kim 5 | takis0112@gmail.com 6 | 7 | Recent updates : 2018/02/09 8 | """ 9 | --------------------------------------------------------------------------------