figure-optimization-of-the-model-initialization-method.tex 1.83 KB
Newer Older
曹润柘 committed
1 2 3 4 5
\begin{tabular}{c c}

\begin{tikzpicture}
\begin{scope}
% ,minimum height =1em,minimum width=2em
曹润柘 committed
6
\tikzstyle{circle} = [draw,black,line width=0.6pt,inner sep=3.5pt,rounded corners=4pt,minimum width=2em]
曹润柘 committed
7 8
\tikzstyle{word} = [inner sep=3.5pt]

曹润柘 committed
9 10 11
\node[circle,fill=red!20](data) at (0,0) {\small{数据}};
\node[circle,fill=blue!20](model) at ([xshift=5em]data.east) {\small{模型}};
\node[word] (init) at ([xshift=-5em]data.west){\small{初始化}};
曹润柘 committed
12

曹润柘 committed
13
\draw[->,thick] (init.east) -- ([xshift=-0.2em]data.west);
曹润柘 committed
14 15
\draw [->,thick] ([yshift=1pt]data.north) .. controls +(90:2em) and +(90:2em) .. ([yshift=1pt]model.north) node[above,midway] {\small{参数优化}};
\draw [->,thick] ([yshift=1pt]model.south) .. controls +(-90:2em) and +(-90:2em) .. ([yshift=1pt]data.south) node[below,midway] {\small{数据优化}};
曹润柘 committed
16

xiaotong committed
17
\node[word] at ([xshift=-0.5em,yshift=-4em]data.south){\small{(a) 基于数据的初始化方法}};
曹润柘 committed
18 19 20 21 22 23 24

\end{scope}
\end{tikzpicture}
&
\begin{tikzpicture}
\begin{scope}
% ,minimum height =1em,minimum width=2em
曹润柘 committed
25
\tikzstyle{circle} = [draw,black,line width=0.6pt,inner sep=3.5pt,rounded corners=4pt,minimum width=2em]
曹润柘 committed
26 27
\tikzstyle{word} = [inner sep=3.5pt]

曹润柘 committed
28 29 30
\node[circle,fill=red!20](data) at (0,0) {\small{数据}};
\node[circle,fill=blue!20](model) at ([xshift=5em]data.east) {\small{模型}};
\node[word] (init) at ([xshift=5em]model.east){\small{初始化}};
曹润柘 committed
31

曹润柘 committed
32
\draw[->,thick] (init.west) -- ([xshift=0.2em]model.east);
曹润柘 committed
33 34
\draw [->,thick] ([yshift=1pt]data.north) .. controls +(90:2em) and +(90:2em) .. ([yshift=1pt]model.north) node[above,midway] {\small{参数优化}};
\draw [->,thick] ([yshift=1pt]model.south) .. controls +(-90:2em) and +(-90:2em) .. ([yshift=1pt]data.south) node[below,midway] {\small{数据优化}};
曹润柘 committed
35

xiaotong committed
36
\node[word] at ([xshift=-0.5em,yshift=-4em]model.south){\small{(b) 基于模型的初始化方法}};
曹润柘 committed
37 38 39 40 41

\end{scope}
\end{tikzpicture}

\end{tabular}