├── .gitattributes ├── .idea ├── .gitignore ├── code.iml ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml └── vcs.xml ├── chapter10 ├── Augmentation.py └── CatVSDog.py ├── chapter11 ├── AlexNet.py ├── LeNet.py ├── ResNet.py ├── TransferLearning.py └── UNet.py ├── chapter14 ├── BLEU_score.py ├── data │ └── en2cn.zip ├── en_bpe.model ├── en_bpe.vocab ├── inference.py ├── tokenizer_test.py ├── translator.py ├── zh_bpe.model └── zh_bpe.vocab ├── chapter15 ├── BLEU_score.py ├── inference.py ├── train.py └── transformer.py ├── chapter5 └── LinearRegression.py ├── chapter6 ├── AutoGrad.py ├── LossChart.py ├── Normalization.py └── PyTorchLinearRegression.py ├── chapter7 ├── Titanic.py └── data │ └── titanic.zip └── chapter8 ├── MNIST.py ├── MNIST_pytorch.py ├── Titanic.py └── data └── mnist.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/code.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/code.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /chapter10/Augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter10/Augmentation.py -------------------------------------------------------------------------------- /chapter10/CatVSDog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter10/CatVSDog.py -------------------------------------------------------------------------------- /chapter11/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter11/AlexNet.py -------------------------------------------------------------------------------- /chapter11/LeNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter11/LeNet.py -------------------------------------------------------------------------------- /chapter11/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter11/ResNet.py -------------------------------------------------------------------------------- /chapter11/TransferLearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter11/TransferLearning.py -------------------------------------------------------------------------------- /chapter11/UNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter11/UNet.py -------------------------------------------------------------------------------- /chapter14/BLEU_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/BLEU_score.py -------------------------------------------------------------------------------- /chapter14/data/en2cn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/data/en2cn.zip -------------------------------------------------------------------------------- /chapter14/en_bpe.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/en_bpe.model -------------------------------------------------------------------------------- /chapter14/en_bpe.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/en_bpe.vocab -------------------------------------------------------------------------------- /chapter14/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/inference.py -------------------------------------------------------------------------------- /chapter14/tokenizer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/tokenizer_test.py -------------------------------------------------------------------------------- /chapter14/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/translator.py -------------------------------------------------------------------------------- /chapter14/zh_bpe.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/zh_bpe.model -------------------------------------------------------------------------------- /chapter14/zh_bpe.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter14/zh_bpe.vocab -------------------------------------------------------------------------------- /chapter15/BLEU_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter15/BLEU_score.py -------------------------------------------------------------------------------- /chapter15/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter15/inference.py -------------------------------------------------------------------------------- /chapter15/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter15/train.py -------------------------------------------------------------------------------- /chapter15/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter15/transformer.py -------------------------------------------------------------------------------- /chapter5/LinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter5/LinearRegression.py -------------------------------------------------------------------------------- /chapter6/AutoGrad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter6/AutoGrad.py -------------------------------------------------------------------------------- /chapter6/LossChart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter6/LossChart.py -------------------------------------------------------------------------------- /chapter6/Normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter6/Normalization.py -------------------------------------------------------------------------------- /chapter6/PyTorchLinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter6/PyTorchLinearRegression.py -------------------------------------------------------------------------------- /chapter7/Titanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter7/Titanic.py -------------------------------------------------------------------------------- /chapter7/data/titanic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter7/data/titanic.zip -------------------------------------------------------------------------------- /chapter8/MNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter8/MNIST.py -------------------------------------------------------------------------------- /chapter8/MNIST_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter8/MNIST_pytorch.py -------------------------------------------------------------------------------- /chapter8/Titanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter8/Titanic.py -------------------------------------------------------------------------------- /chapter8/data/mnist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RethinkFun/DeepLearning/HEAD/chapter8/data/mnist.zip --------------------------------------------------------------------------------