-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
executable file
·110 lines (75 loc) · 2.52 KB
/
main.tex
File metadata and controls
executable file
·110 lines (75 loc) · 2.52 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
\documentclass{../CNTeXBookTemplate/NanCNBook}
%\includeonly{}
\title{\hei\chuhao{Caffe\cite{jia2014caffe}解析}}
\author{nannanmath}
\begin{document}
\maketitle{}
\thispagestyle{empty}
\frontmatter
\pagestyle{plain}
\chapter*{前{\quad}言}
学习Caffe\footnote{http://caffe.berkeleyvision.org/}的设计与实现的细节,从而更好的实现机器学习相关的研究。
% \pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
%\pagenumbering{arabic}
\mainmatter
\pagestyle{fancy}
\part{Caffe的依赖与结构}
% Chapter: C/C++编程基础
% Path: include/chp_c_basic/
\include{include/chp_c_basic/chp_c_basic}
% Chapter: CUDA编程基础
% Path: include/chp_cuda_basic/
\include{include/chp_cuda_basic/chp_cuda_basic}
% Chapter: Caffe的依赖库
% Path: include/chp_deps_libs/
\include{include/chp_deps_libs/chp_deps_libs}
\chapter{Caffe的层次}
\part{Caffe的外部调用}
\chapter{从examples开始} % include/chp_from_examples/
% section 1
% title: 图像分类classification.cpp
\include{include/chp_from_examples/classification_cpp}
\chapter{常用工具tools}
在Caffe代码的tools目录下包含了诸多作为tools的工具软件代码,他们通过对Caffe核心功能的调用实现各种外层的逻辑应用。
\section{计算图像均值compute\_image\_mean.cpp}
\section{图像写入数据库convert\_query.cpp}
\include{include/chp_from_tools/caffe_cpp}
\section{特征提取extract\_feature.cpp}
\section{网络微调finetune\_net.cpp}
\part{Caffe的内部实现}
% Chapter: 数学运算及辅助函数
% Path: include/chp_math_funcs/
\include{include/chp_math_funcs/chp_math_funcs}
% Chapter: CUDA辅助宏
% Path: include/chp_cuda_macro/
\include{include/chp_cuda_macro/chp_cuda_macro}
% Chapter: common文件
% Path: include/chp_common_file/
\include{include/chp_common_file/chp_common_file}
% Chapter: Proto文件
% Path: include/chp_proto_file/
\include{include/chp_proto_file/chp_proto_file}
% Chapter: 底层数据管理syncedmemory类
% Path: include/chp_syncedmem_cls/
\include{include/chp_syncedmem_cls/chp_syncedmem_cls}
% Chapter: 网络中的数据Blob类
% Path: include/chp_blob_cls/
\include{include/chp_blob_cls/chp_blob_cls}
\chapter{网络定义Layer类}
\chapter{网络管理Net类}
\chapter{网络的运行Slover类}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%
\cnbibliography{bibtex.bib}
% \appendix
\begin{cnappendix}
\chapter{编译指挥官Makefile}
\end{cnappendix}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master:
%%% End: