figure-softmax.tex 620 Bytes
Newer Older
曹润柘 committed
1 2
\definecolor{ublue}{rgb}{0.152,0.250,0.545}
\begin{tikzpicture}
曹润柘 committed
3 4
\begin{axis}[  
  width=8cm, height=5cm, 
曹润柘 committed
5 6
  xtick={-6,-4,...,6},
  ytick={0,0.5,1},
曹润柘 committed
7 8
  xlabel={\small{$x$}},
  ylabel={\small{Softmax($x$)}},
曹润柘 committed
9 10 11 12 13 14 15 16 17 18 19 20
  xlabel style={xshift=3.0cm,yshift=1cm},
  axis y line=middle,
  ylabel style={xshift=-2.4cm,yshift=-0.2cm},
  x axis line style={->},
  axis line style={very thick},
 % ymajorgrids,
  %xmajorgrids,
 axis x line*=bottom,
  xmin=-6,
  xmax=6,
  ymin=0,
  ymax=1]
曹润柘 committed
21
\addplot[draw=ublue,very thick]{(tanh(x/2) + 1)/2};
曹润柘 committed
22 23 24
\end{axis}
\end{tikzpicture}

曹润柘 committed
25
%---------------------------------------------------------------------