Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions latex/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## 《零基础入门深度学习》


本文是**Bingtao Han**发布在作业部落的 [《零基础入门深度学习》](https://www.zybuluo.com/hanbingtao/note/433855) latex版本

## 功能特色

采用了[elegantbook](https://github.com/ElegantLaTeX/ElegantBook) 模板, 将《零基础入门深度学习》整理成PDF版本,方便与个人学习使用。

## 编译方式

采用的编译方式为 XELATEX → XELATEX



## 版权声明

基于 **Bingtao Han** 发布在作业部落的 《零基础入门深度学习》 博客整理而成的,版权归 **Bingtao Han**。

## 感谢

感谢 **Bingtao Han** 分享深度学习的知识!

感谢 ElegantLaTeX 发布的精美$\LaTeX$模板 [elegantbook](https://github.com/ElegantLaTeX/ElegantBook)





Binary file added latex/ZerotoDeepLearning.pdf
Binary file not shown.
57 changes: 57 additions & 0 deletions latex/ZerotoDeepLearning.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
\documentclass[cn,11pt,twocol]{elegantbook}

\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{multirow}
\usepackage{animate}

\lstset{
columns=fixed,
numbers=left, % 在左侧显示行号
frame=none, % 不显示背景边框
backgroundcolor=\color[RGB]{245,245,244}, % 设定背景颜色
keywordstyle=\color[RGB]{40,40,255}, % 设定关键字颜色
numberstyle=\footnotesize\color{darkgray}, % 设定行号格式
commentstyle=\it\color[RGB]{0,96,96}, % 设置代码注释的格式
stringstyle=\rmfamily\slshape\color[RGB]{128,0,0}, % 设置字符串格式
showstringspaces=false, % 不显示字符串中的空格
language=Python, % 设置语言
}

\title{深度学习:零基础入门}
\subtitle{从零实现深度学习(Python版)}

% \author{Bingtao Han\& Deans Yu}
\author{Bingtao Han}
\institute{Open Access}
\date{\today}
\version{0.09}

\extrainfo{Victory won\rq t come to us unless we go to it. --- M. Moore}

\logo{dl.jpg}
\cover{cover3.jpg}
% \logo{seulogo.png}
% \cover{cover.jpg}

\begin{document}

\maketitle

\tableofcontents

\mainmatter
\hypersetup{pageanchor=true}


\input{./chapter/perceptron.tex}
\input{./chapter/linear_unit.tex}
\input{./chapter/bp.tex}
\input{./chapter/cnn.tex}
\input{./chapter/rnn.tex}
\input{./chapter/lstm.tex}
\input{./chapter/recu.tex}
% \input{./chapter/temp.tex}


\end{document}
Loading