├── .gitignore ├── 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 ├── Gemfile.lock ├── _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 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── js │ │ ├── _main.js │ │ ├── plugins │ │ ├── jquery.dlmenu.js │ │ ├── jquery.fitvids.js │ │ ├── jquery.magnific-popup.js │ │ └── respond.js │ │ ├── scripts.min.js │ │ └── vendor │ │ ├── jquery-1.9.1.min.js │ │ └── modernizr-2.6.2.custom.min.js └── index.html ├── donation.pdf ├── figure.pdf ├── math_symbol.tex ├── natbib.bst ├── notation.tex ├── scripts ├── convert2md.sh ├── parse_anno.py └── parse_gls.py ├── terminology.tex └── website.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter1/README.md: -------------------------------------------------------------------------------- 1 | #第一章笔记 2 | -------------------------------------------------------------------------------- /Chapter1/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter1/annotations.txt -------------------------------------------------------------------------------- /Chapter1/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter1/introduction.tex -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- 1 | #第十章笔记 2 | -------------------------------------------------------------------------------- /Chapter10/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter10/annotations.txt -------------------------------------------------------------------------------- /Chapter10/sequence_modeling_rnn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter10/sequence_modeling_rnn.tex -------------------------------------------------------------------------------- /Chapter11/README.md: -------------------------------------------------------------------------------- 1 | #第十一章笔记 2 | -------------------------------------------------------------------------------- /Chapter11/practical_methodology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter11/practical_methodology.tex -------------------------------------------------------------------------------- /Chapter12/README.md: -------------------------------------------------------------------------------- 1 | #第十二章笔记 2 | -------------------------------------------------------------------------------- /Chapter12/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter12/annotations.txt -------------------------------------------------------------------------------- /Chapter12/applications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter12/applications.tex -------------------------------------------------------------------------------- /Chapter13/README.md: -------------------------------------------------------------------------------- 1 | #第十三章笔记 2 | -------------------------------------------------------------------------------- /Chapter13/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter13/annotations.txt -------------------------------------------------------------------------------- /Chapter13/linear_factor_models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter13/linear_factor_models.tex -------------------------------------------------------------------------------- /Chapter14/README.md: -------------------------------------------------------------------------------- 1 | #第十四章笔记 2 | -------------------------------------------------------------------------------- /Chapter14/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter14/annotations.txt -------------------------------------------------------------------------------- /Chapter14/autoencoders.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter14/autoencoders.tex -------------------------------------------------------------------------------- /Chapter15/README.md: -------------------------------------------------------------------------------- 1 | #第十五章笔记 2 | -------------------------------------------------------------------------------- /Chapter15/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter15/annotations.txt -------------------------------------------------------------------------------- /Chapter15/representation_learning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter15/representation_learning.tex -------------------------------------------------------------------------------- /Chapter16/README.md: -------------------------------------------------------------------------------- 1 | #第十六章笔记 2 | -------------------------------------------------------------------------------- /Chapter16/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter16/annotations.txt -------------------------------------------------------------------------------- /Chapter16/structured_probabilistic_modelling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter16/structured_probabilistic_modelling.tex -------------------------------------------------------------------------------- /Chapter17/README.md: -------------------------------------------------------------------------------- 1 | #第十七章笔记 2 | -------------------------------------------------------------------------------- /Chapter17/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter17/annotations.txt -------------------------------------------------------------------------------- /Chapter17/monte_carlo_methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter17/monte_carlo_methods.tex -------------------------------------------------------------------------------- /Chapter18/README.md: -------------------------------------------------------------------------------- 1 | #第十八章笔记 2 | -------------------------------------------------------------------------------- /Chapter18/confronting_the_partition_function.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter18/confronting_the_partition_function.tex -------------------------------------------------------------------------------- /Chapter19/README.md: -------------------------------------------------------------------------------- 1 | #第十九章笔记 2 | -------------------------------------------------------------------------------- /Chapter19/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter19/annotations.txt -------------------------------------------------------------------------------- /Chapter19/approximate_inference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter19/approximate_inference.tex -------------------------------------------------------------------------------- /Chapter2/README.md: -------------------------------------------------------------------------------- 1 | #第二章笔记 2 | -------------------------------------------------------------------------------- /Chapter2/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter2/annotations.txt -------------------------------------------------------------------------------- /Chapter2/linear_algebra.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter2/linear_algebra.tex -------------------------------------------------------------------------------- /Chapter20/README.md: -------------------------------------------------------------------------------- 1 | #第二十章笔记 2 | -------------------------------------------------------------------------------- /Chapter20/deep_generative_models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter20/deep_generative_models.tex -------------------------------------------------------------------------------- /Chapter3/README.md: -------------------------------------------------------------------------------- 1 | #第三章笔记 2 | -------------------------------------------------------------------------------- /Chapter3/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter3/annotations.txt -------------------------------------------------------------------------------- /Chapter3/probability_and_information_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter3/probability_and_information_theory.tex -------------------------------------------------------------------------------- /Chapter4/README.md: -------------------------------------------------------------------------------- 1 | #第四章笔记 2 | -------------------------------------------------------------------------------- /Chapter4/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter4/annotations.txt -------------------------------------------------------------------------------- /Chapter4/numerical_computation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter4/numerical_computation.tex -------------------------------------------------------------------------------- /Chapter5/README.md: -------------------------------------------------------------------------------- 1 | #第五章笔记 2 | -------------------------------------------------------------------------------- /Chapter5/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter5/annotations.txt -------------------------------------------------------------------------------- /Chapter5/machine_learning_basics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter5/machine_learning_basics.tex -------------------------------------------------------------------------------- /Chapter6/README.md: -------------------------------------------------------------------------------- 1 | #第六章笔记 2 | -------------------------------------------------------------------------------- /Chapter6/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter6/annotations.txt -------------------------------------------------------------------------------- /Chapter6/deep_feedforward_networks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter6/deep_feedforward_networks.tex -------------------------------------------------------------------------------- /Chapter7/README.md: -------------------------------------------------------------------------------- 1 | #第七章笔记 2 | -------------------------------------------------------------------------------- /Chapter7/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter7/annotations.txt -------------------------------------------------------------------------------- /Chapter7/regularization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter7/regularization.tex -------------------------------------------------------------------------------- /Chapter8/README.md: -------------------------------------------------------------------------------- 1 | #第八章笔记 2 | -------------------------------------------------------------------------------- /Chapter8/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter8/annotations.txt -------------------------------------------------------------------------------- /Chapter8/optimization_for_training_deep_models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter8/optimization_for_training_deep_models.tex -------------------------------------------------------------------------------- /Chapter9/README.md: -------------------------------------------------------------------------------- 1 | #第九章笔记 2 | -------------------------------------------------------------------------------- /Chapter9/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter9/annotations.txt -------------------------------------------------------------------------------- /Chapter9/convolutional_networks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Chapter9/convolutional_networks.tex -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/README.md -------------------------------------------------------------------------------- /acknowledgments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/acknowledgments.tex -------------------------------------------------------------------------------- /acknowledgments_github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/acknowledgments_github.md -------------------------------------------------------------------------------- /applied_math_and_machine_learning_basics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/applied_math_and_machine_learning_basics.tex -------------------------------------------------------------------------------- /breakcites.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/breakcites.sty -------------------------------------------------------------------------------- /deep_learning_research.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/deep_learning_research.tex -------------------------------------------------------------------------------- /deep_networks_modern_practices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/deep_networks_modern_practices.tex -------------------------------------------------------------------------------- /dlbook_cn.bib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dlbook_cn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/dlbook_cn.tex -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/browser-upgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/browser-upgrade.html -------------------------------------------------------------------------------- /docs/_includes/disqus_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/disqus_comments.html -------------------------------------------------------------------------------- /docs/_includes/feed-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/feed-footer.html -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/gallery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/gallery -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/math_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/math_symbol.html -------------------------------------------------------------------------------- /docs/_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/navigation.html -------------------------------------------------------------------------------- /docs/_includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/pagination.html -------------------------------------------------------------------------------- /docs/_includes/read-more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/read-more.html -------------------------------------------------------------------------------- /docs/_includes/read-time-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/read-time-index.html -------------------------------------------------------------------------------- /docs/_includes/read-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/read-time.html -------------------------------------------------------------------------------- /docs/_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/scripts.html -------------------------------------------------------------------------------- /docs/_includes/social-share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_includes/social-share.html -------------------------------------------------------------------------------- /docs/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_layouts/page.html -------------------------------------------------------------------------------- /docs/_layouts/post-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_layouts/post-index.html -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_layouts/post.html -------------------------------------------------------------------------------- /docs/_posts/2016-12-01-Chapter1_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-01-Chapter1_introduction.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-02-Chapter2_linear_algebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-02-Chapter2_linear_algebra.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-03-Chapter3_probability_and_information_theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-03-Chapter3_probability_and_information_theory.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-04-Chapter4_numerical_computation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-04-Chapter4_numerical_computation.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-05-Chapter5_machine_learning_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-05-Chapter5_machine_learning_basics.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-06-Chapter6_deep_feedforward_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-06-Chapter6_deep_feedforward_networks.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-07-Chapter7_regularization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-07-Chapter7_regularization.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-08-Chapter8_optimization_for_training_deep_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-08-Chapter8_optimization_for_training_deep_models.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-09-Chapter9_convolutional_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-09-Chapter9_convolutional_networks.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-10-Chapter10_sequence_modeling_rnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-10-Chapter10_sequence_modeling_rnn.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-11-Chapter11_practical_methodology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-11-Chapter11_practical_methodology.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-12-Chapter12_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-12-Chapter12_applications.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-13-Chapter13_linear_factor_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-13-Chapter13_linear_factor_models.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-14-Chapter14_autoencoders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-14-Chapter14_autoencoders.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-15-Chapter15_representation_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-15-Chapter15_representation_learning.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-16-Chapter16_structured_probabilistic_modelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-16-Chapter16_structured_probabilistic_modelling.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-17-Chapter17_monte_carlo_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-17-Chapter17_monte_carlo_methods.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-18-Chapter18_confronting_the_partition_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-18-Chapter18_confronting_the_partition_function.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-19-Chapter19_approximate_inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-19-Chapter19_approximate_inference.md -------------------------------------------------------------------------------- /docs/_posts/2016-12-20-Chapter20_deep_generative_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_posts/2016-12-20-Chapter20_deep_generative_models.md -------------------------------------------------------------------------------- /docs/_sass/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_animations.scss -------------------------------------------------------------------------------- /docs/_sass/_coderay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_coderay.scss -------------------------------------------------------------------------------- /docs/_sass/_dl-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_dl-menu.scss -------------------------------------------------------------------------------- /docs/_sass/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_elements.scss -------------------------------------------------------------------------------- /docs/_sass/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_grid.scss -------------------------------------------------------------------------------- /docs/_sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_mixins.scss -------------------------------------------------------------------------------- /docs/_sass/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_page.scss -------------------------------------------------------------------------------- /docs/_sass/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_reset.scss -------------------------------------------------------------------------------- /docs/_sass/_site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_site.scss -------------------------------------------------------------------------------- /docs/_sass/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_syntax.scss -------------------------------------------------------------------------------- /docs/_sass/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_typography.scss -------------------------------------------------------------------------------- /docs/_sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/_variables.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_animated.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_bordered-pulled.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_core.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_fixed-width.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_icons.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_larger.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_list.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_mixins.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_path.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_rotated-flipped.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_stacked.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/_variables.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/font-awesome/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/font-awesome/font-awesome.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/magnific-popup/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/magnific-popup/_settings.scss -------------------------------------------------------------------------------- /docs/_sass/vendor/magnific-popup/magnific-popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/_sass/vendor/magnific-popup/magnific-popup.scss -------------------------------------------------------------------------------- /docs/assets/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/css/main.scss -------------------------------------------------------------------------------- /docs/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/assets/js/_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/_main.js -------------------------------------------------------------------------------- /docs/assets/js/plugins/jquery.dlmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/plugins/jquery.dlmenu.js -------------------------------------------------------------------------------- /docs/assets/js/plugins/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/plugins/jquery.fitvids.js -------------------------------------------------------------------------------- /docs/assets/js/plugins/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/plugins/jquery.magnific-popup.js -------------------------------------------------------------------------------- /docs/assets/js/plugins/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/plugins/respond.js -------------------------------------------------------------------------------- /docs/assets/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/scripts.min.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/vendor/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/modernizr-2.6.2.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/assets/js/vendor/modernizr-2.6.2.custom.min.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/docs/index.html -------------------------------------------------------------------------------- /donation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/donation.pdf -------------------------------------------------------------------------------- /figure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/figure.pdf -------------------------------------------------------------------------------- /math_symbol.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/math_symbol.tex -------------------------------------------------------------------------------- /natbib.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/natbib.bst -------------------------------------------------------------------------------- /notation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/notation.tex -------------------------------------------------------------------------------- /scripts/convert2md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/scripts/convert2md.sh -------------------------------------------------------------------------------- /scripts/parse_anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/scripts/parse_anno.py -------------------------------------------------------------------------------- /scripts/parse_gls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/scripts/parse_gls.py -------------------------------------------------------------------------------- /terminology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/terminology.tex -------------------------------------------------------------------------------- /website.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exacity/deeplearningbook-chinese/HEAD/website.tex --------------------------------------------------------------------------------