gitextract_mj_zyxg1/ ├── Chapter1/ │ ├── README.md │ ├── annotations.txt │ └── introduction.tex ├── Chapter10/ │ ├── README.md │ ├── annotations.txt │ └── sequence_modeling_rnn.tex ├── Chapter11/ │ ├── README.md │ └── practical_methodology.tex ├── Chapter12/ │ ├── README.md │ ├── annotations.txt │ └── applications.tex ├── Chapter13/ │ ├── README.md │ ├── annotations.txt │ └── linear_factor_models.tex ├── Chapter14/ │ ├── README.md │ ├── annotations.txt │ └── autoencoders.tex ├── Chapter15/ │ ├── README.md │ ├── annotations.txt │ └── representation_learning.tex ├── Chapter16/ │ ├── README.md │ ├── annotations.txt │ └── structured_probabilistic_modelling.tex ├── Chapter17/ │ ├── README.md │ ├── annotations.txt │ └── monte_carlo_methods.tex ├── Chapter18/ │ ├── README.md │ └── confronting_the_partition_function.tex ├── Chapter19/ │ ├── README.md │ ├── annotations.txt │ └── approximate_inference.tex ├── Chapter2/ │ ├── README.md │ ├── annotations.txt │ └── linear_algebra.tex ├── Chapter20/ │ ├── README.md │ └── deep_generative_models.tex ├── Chapter3/ │ ├── README.md │ ├── annotations.txt │ └── probability_and_information_theory.tex ├── Chapter4/ │ ├── README.md │ ├── annotations.txt │ └── numerical_computation.tex ├── Chapter5/ │ ├── README.md │ ├── annotations.txt │ └── machine_learning_basics.tex ├── Chapter6/ │ ├── README.md │ ├── annotations.txt │ └── deep_feedforward_networks.tex ├── Chapter7/ │ ├── README.md │ ├── annotations.txt │ └── regularization.tex ├── Chapter8/ │ ├── README.md │ ├── annotations.txt │ └── optimization_for_training_deep_models.tex ├── Chapter9/ │ ├── README.md │ ├── annotations.txt │ └── convolutional_networks.tex ├── Makefile ├── README.md ├── acknowledgments.tex ├── acknowledgments_github.md ├── applied_math_and_machine_learning_basics.tex ├── breakcites.sty ├── deep_learning_research.tex ├── deep_networks_modern_practices.tex ├── dlbook_cn.bib ├── dlbook_cn.tex ├── docs/ │ ├── Gemfile │ ├── _config.yml │ ├── _includes/ │ │ ├── browser-upgrade.html │ │ ├── disqus_comments.html │ │ ├── feed-footer.html │ │ ├── footer.html │ │ ├── gallery │ │ ├── head.html │ │ ├── math_symbol.html │ │ ├── navigation.html │ │ ├── pagination.html │ │ ├── read-more.html │ │ ├── read-time-index.html │ │ ├── read-time.html │ │ ├── scripts.html │ │ └── social-share.html │ ├── _layouts/ │ │ ├── page.html │ │ ├── post-index.html │ │ └── post.html │ ├── _posts/ │ │ ├── 2016-12-01-Chapter1_introduction.md │ │ ├── 2016-12-02-Chapter2_linear_algebra.md │ │ ├── 2016-12-03-Chapter3_probability_and_information_theory.md │ │ ├── 2016-12-04-Chapter4_numerical_computation.md │ │ ├── 2016-12-05-Chapter5_machine_learning_basics.md │ │ ├── 2016-12-06-Chapter6_deep_feedforward_networks.md │ │ ├── 2016-12-07-Chapter7_regularization.md │ │ ├── 2016-12-08-Chapter8_optimization_for_training_deep_models.md │ │ ├── 2016-12-09-Chapter9_convolutional_networks.md │ │ ├── 2016-12-10-Chapter10_sequence_modeling_rnn.md │ │ ├── 2016-12-11-Chapter11_practical_methodology.md │ │ ├── 2016-12-12-Chapter12_applications.md │ │ ├── 2016-12-13-Chapter13_linear_factor_models.md │ │ ├── 2016-12-14-Chapter14_autoencoders.md │ │ ├── 2016-12-15-Chapter15_representation_learning.md │ │ ├── 2016-12-16-Chapter16_structured_probabilistic_modelling.md │ │ ├── 2016-12-17-Chapter17_monte_carlo_methods.md │ │ ├── 2016-12-18-Chapter18_confronting_the_partition_function.md │ │ ├── 2016-12-19-Chapter19_approximate_inference.md │ │ └── 2016-12-20-Chapter20_deep_generative_models.md │ ├── _sass/ │ │ ├── _animations.scss │ │ ├── _coderay.scss │ │ ├── _dl-menu.scss │ │ ├── _elements.scss │ │ ├── _grid.scss │ │ ├── _mixins.scss │ │ ├── _page.scss │ │ ├── _reset.scss │ │ ├── _site.scss │ │ ├── _syntax.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ └── vendor/ │ │ ├── font-awesome/ │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── magnific-popup/ │ │ ├── _settings.scss │ │ └── magnific-popup.scss │ ├── assets/ │ │ ├── css/ │ │ │ └── main.scss │ │ ├── fonts/ │ │ │ └── FontAwesome.otf │ │ └── js/ │ │ ├── _main.js │ │ └── plugins/ │ │ ├── jquery.dlmenu.js │ │ ├── jquery.fitvids.js │ │ ├── jquery.magnific-popup.js │ │ └── respond.js │ └── index.html ├── math_symbol.tex ├── natbib.bst ├── notation.tex ├── scripts/ │ ├── parse_anno.py │ └── parse_gls.py ├── terminology.tex └── website.tex