├── .gitignore ├── Makefile ├── README.md ├── bootstrap.sh ├── cjkfonts.sty ├── contents ├── acknowledgements.tex ├── applications.tex ├── autoencoders.tex ├── beamermindmap.nav ├── beamermindmap.snm ├── beamermindmap.tex ├── convnets.tex ├── generative_models.tex ├── glossaries.tex ├── graphical_models.tex ├── guidelines.tex ├── inference.tex ├── intro.tex ├── linear_algebra.tex ├── linear_factors.tex ├── ml.tex ├── mlp.tex ├── monte_carlo.tex ├── notation.tex ├── numerical.tex ├── optimization.tex ├── part_basics.tex ├── part_practical.tex ├── part_research.tex ├── partition.tex ├── prob.tex ├── regularization.tex ├── representation.tex ├── rnn.tex └── title.tex ├── dlbook-complete.bib ├── dlbook.tex └── figures ├── approximate_minimization.pdf ├── computational_graphs.pdf ├── critical_points.pdf ├── curvature_in_hessian.pdf ├── different_ai_disciplines.pdf ├── different_representations.pdf ├── eigen_effect.pdf ├── figure-18.1.jpg ├── figure18-1.png ├── gradient_descent.pdf ├── identity_matrix.pdf ├── illustration_of_a_deep_learning_model.pdf ├── saddle_point.pdf ├── second_derivative.pdf ├── transpose_of_matrix.pdf └── venn_diagram.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /cjkfonts.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/cjkfonts.sty -------------------------------------------------------------------------------- /contents/acknowledgements.tex: -------------------------------------------------------------------------------- 1 | \chapter{致谢} 2 | \label{ch:Acknowledgements} 3 | 4 | 没有许多人的贡献,本书是不可能完成的。 5 | -------------------------------------------------------------------------------- /contents/applications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/applications.tex -------------------------------------------------------------------------------- /contents/autoencoders.tex: -------------------------------------------------------------------------------- 1 | \chapter{自编码器} 2 | \label{ch:autoencoders} 3 | -------------------------------------------------------------------------------- /contents/beamermindmap.nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/beamermindmap.nav -------------------------------------------------------------------------------- /contents/beamermindmap.snm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contents/beamermindmap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/beamermindmap.tex -------------------------------------------------------------------------------- /contents/convnets.tex: -------------------------------------------------------------------------------- 1 | \chapter{卷积网络} 2 | \label{ch:convnets} 3 | -------------------------------------------------------------------------------- /contents/generative_models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/generative_models.tex -------------------------------------------------------------------------------- /contents/glossaries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/glossaries.tex -------------------------------------------------------------------------------- /contents/graphical_models.tex: -------------------------------------------------------------------------------- 1 | \chapter{深度学习的结构化概率模型} 2 | \label{ch:graphical_models} 3 | -------------------------------------------------------------------------------- /contents/guidelines.tex: -------------------------------------------------------------------------------- 1 | \chapter{实践方法论} 2 | \label{ch:guidelines} 3 | -------------------------------------------------------------------------------- /contents/inference.tex: -------------------------------------------------------------------------------- 1 | \chapter{近似推断} 2 | \label{ch:inference} 3 | -------------------------------------------------------------------------------- /contents/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/intro.tex -------------------------------------------------------------------------------- /contents/linear_algebra.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/linear_algebra.tex -------------------------------------------------------------------------------- /contents/linear_factors.tex: -------------------------------------------------------------------------------- 1 | \chapter{线性因子模型} 2 | \label{ch:linear_factors} 3 | -------------------------------------------------------------------------------- /contents/ml.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/ml.tex -------------------------------------------------------------------------------- /contents/mlp.tex: -------------------------------------------------------------------------------- 1 | \chapter{深度前驱网络} 2 | \label{ch:mlp} 3 | -------------------------------------------------------------------------------- /contents/monte_carlo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/monte_carlo.tex -------------------------------------------------------------------------------- /contents/notation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/notation.tex -------------------------------------------------------------------------------- /contents/numerical.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/numerical.tex -------------------------------------------------------------------------------- /contents/optimization.tex: -------------------------------------------------------------------------------- 1 | \chapter{训练深层模型的优化技术} 2 | \label{ch:optimization} 3 | -------------------------------------------------------------------------------- /contents/part_basics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/part_basics.tex -------------------------------------------------------------------------------- /contents/part_practical.tex: -------------------------------------------------------------------------------- 1 | \part{深度学习:现代实践} 2 | \label{part_practical} 3 | -------------------------------------------------------------------------------- /contents/part_research.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/part_research.tex -------------------------------------------------------------------------------- /contents/partition.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/partition.tex -------------------------------------------------------------------------------- /contents/prob.tex: -------------------------------------------------------------------------------- 1 | \chapter{概率论和信息论} 2 | \label{ch:prob} 3 | -------------------------------------------------------------------------------- /contents/regularization.tex: -------------------------------------------------------------------------------- 1 | \chapter{深度学习的规范化技术} 2 | \label{ch:regularization} 3 | -------------------------------------------------------------------------------- /contents/representation.tex: -------------------------------------------------------------------------------- 1 | \chapter{表示学习} 2 | \label{ch:representation} 3 | -------------------------------------------------------------------------------- /contents/rnn.tex: -------------------------------------------------------------------------------- 1 | \chapter{序列建模:循环和递归网络} 2 | \label{ch:rnn} 3 | -------------------------------------------------------------------------------- /contents/title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/contents/title.tex -------------------------------------------------------------------------------- /dlbook-complete.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/dlbook-complete.bib -------------------------------------------------------------------------------- /dlbook.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/dlbook.tex -------------------------------------------------------------------------------- /figures/approximate_minimization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/approximate_minimization.pdf -------------------------------------------------------------------------------- /figures/computational_graphs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/computational_graphs.pdf -------------------------------------------------------------------------------- /figures/critical_points.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/critical_points.pdf -------------------------------------------------------------------------------- /figures/curvature_in_hessian.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/curvature_in_hessian.pdf -------------------------------------------------------------------------------- /figures/different_ai_disciplines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/different_ai_disciplines.pdf -------------------------------------------------------------------------------- /figures/different_representations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/different_representations.pdf -------------------------------------------------------------------------------- /figures/eigen_effect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/eigen_effect.pdf -------------------------------------------------------------------------------- /figures/figure-18.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/figure-18.1.jpg -------------------------------------------------------------------------------- /figures/figure18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/figure18-1.png -------------------------------------------------------------------------------- /figures/gradient_descent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/gradient_descent.pdf -------------------------------------------------------------------------------- /figures/identity_matrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/identity_matrix.pdf -------------------------------------------------------------------------------- /figures/illustration_of_a_deep_learning_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/illustration_of_a_deep_learning_model.pdf -------------------------------------------------------------------------------- /figures/saddle_point.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/saddle_point.pdf -------------------------------------------------------------------------------- /figures/second_derivative.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/second_derivative.pdf -------------------------------------------------------------------------------- /figures/transpose_of_matrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/transpose_of_matrix.pdf -------------------------------------------------------------------------------- /figures/venn_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerneil/dlbook-zh-cn/HEAD/figures/venn_diagram.pdf --------------------------------------------------------------------------------