├── .gitignore ├── README.md ├── ch01 ├── ex1_activations.py ├── ex2_mnist_mlp.py ├── ex3_bp.py └── examples.py ├── ch02 ├── cnn.py ├── ex_cifar10_cnn.py └── vgg.py ├── ch03 ├── circle.png ├── dog.jpg ├── ex_unet.py └── unet_model.npz ├── ch04 └── ex_gan_mnist.py └── ch05 ├── ex1_imdb_lstm.py ├── ex2_text_gen.py └── trump_text.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/README.md -------------------------------------------------------------------------------- /ch01/ex1_activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch01/ex1_activations.py -------------------------------------------------------------------------------- /ch01/ex2_mnist_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch01/ex2_mnist_mlp.py -------------------------------------------------------------------------------- /ch01/ex3_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch01/ex3_bp.py -------------------------------------------------------------------------------- /ch01/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch01/examples.py -------------------------------------------------------------------------------- /ch02/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch02/cnn.py -------------------------------------------------------------------------------- /ch02/ex_cifar10_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch02/ex_cifar10_cnn.py -------------------------------------------------------------------------------- /ch02/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch02/vgg.py -------------------------------------------------------------------------------- /ch03/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch03/circle.png -------------------------------------------------------------------------------- /ch03/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch03/dog.jpg -------------------------------------------------------------------------------- /ch03/ex_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch03/ex_unet.py -------------------------------------------------------------------------------- /ch03/unet_model.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch03/unet_model.npz -------------------------------------------------------------------------------- /ch04/ex_gan_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch04/ex_gan_mnist.py -------------------------------------------------------------------------------- /ch05/ex1_imdb_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch05/ex1_imdb_lstm.py -------------------------------------------------------------------------------- /ch05/ex2_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch05/ex2_text_gen.py -------------------------------------------------------------------------------- /ch05/trump_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/HaoDong_aicourse2023_codes/HEAD/ch05/trump_text.txt --------------------------------------------------------------------------------