-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunderstanding_nn.tex
More file actions
96 lines (74 loc) · 1.98 KB
/
understanding_nn.tex
File metadata and controls
96 lines (74 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
\documentclass[UTF8, 12pt]{article}
\usepackage{ctex}
\usepackage{inputenc}
\usepackage{amsmath}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage[colorlinks=true, linkcolor=red, urlcolor=blue]{hyperref}
\usepackage{xcolor}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{tcolorbox} % box制作基本宏包
\usepackage{varwidth} % box宽度设置需要
\usepackage{ruby} % 标注
\usepackage{enumitem} % 列表宏包
\usepackage{listings} % 代码宏包
\usepackage{minted}
\tcbuselibrary{breakable} %box内自动折行
\tcbuselibrary{skins} % 填充等
\usetikzlibrary{arrows.meta}
\pgfplotsset{compat=1.18}
\tcbset{
myrecommendbox/.style={
colback=yellow!10!white,
colframe=yellow!50!black,
fonttitle=\bfseries,
coltitle=black,
colbacktitle=yellow!50!white,
boxrule=0.5mm,
arc=4mm,
outer arc=4mm,
boxsep=5pt,
left=5pt,
right=5pt,
top=5pt,
bottom=5pt,
breakable,
enhanced,
}
}
\newcommand{\emptyline}{\vspace{\baselineskip}}
\newcommand{\uhref}[2]{\,\href{#1}{\,\underline{#2}}\,}
\newcommand{\uurl}[1]{\,\href{#1}{\,\underline{#1}}\,}
\newcommand{\textoverset}[2]{$\overset{\text{#1}}{\text{#2}}$}
\newcommand{\bfx}{{\mathbf{x}}}
\newcommand{\bfy}{{\mathbf{y}}}
\newcommand{\bfr}{{\mathbf{r}}}
\DeclareMathOperator*{\argmin}{arg\,min}
\DeclareMathOperator*{\argmax}{arg\,max}
\title{如何理解神经网络——信息量、压缩与智能}
\author{gtj}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\newpage
\input{sections/section1.tex}
\newpage
\input{sections/section2.tex}
\newpage
\input{sections/section3.tex}
\input{sections/section4.tex}
\input{sections/section5.tex}
\newpage
\input{sections/section6.tex}
\input{sections/section7.tex}
\input{sections/section8.tex}
\input{sections/section9.tex}
\newpage
\input{sections/section10.tex}
\end{document}