패키지 를 사용하여 신경망 일러스트레이션을 만들려고 합니다 neuralnetwork
. 편향 뉴런에 별도로 라벨을 붙이고 싶습니다.
지금은 코드가 있습니다.
\documentclass[fleqn,11pt,a4paper,final]{article}
\usepackage{neuralnetwork}
\begin{document}
\begin{figure}[h!]
\begin{neuralnetwork}[height=1.5 ,maintitleheight=1cm,layertitleheight=3cm]
\newcommand{\nodetextx}[2]{$x_{#2}$}
\newcommand{\nodetextz}[2]{$y$}
\newcommand{\nodetexth}[2]{$h_{#2,1}$}
\newcommand{\nodetexthto}[2]{$h_{#2,2}$}
\inputlayer[count=3, title={Input-lag}, text=\nodetextx]
\hiddenlayer[count=5, title={Skjult lag}, text=\nodetexth]
\linklayers
\hiddenlayer[count=4, title={Skjult lag}, text=\nodetexthto]
\linklayers
\outputlayer[count=1, title={Output-lag}, text=\nodetextz]
\linklayers
\end{neuralnetwork}
\end{figure}
\end{document}
나는 x_0
-neuron에 레이블을 지정하고 \textbf{c_1}
, h_{0,1}
-neuron에 레이블을 지정하고 \textbf{c_2}
, 마지막으로 h_{0,2}
-neuron에 레이블을 지정하고 싶습니다 b
. 어떻게 해야 하나요?
도움을 주시면 감사하겠습니다. 감사해요
답변1
이는 필요한 것보다 더 복잡할 수 있지만 작동하는 것 같습니다.
\documentclass[border=5mm]{standalone}
\usepackage{xpatch}
\usepackage{neuralnetwork}
% this is the command that prints the first node in a layer
% \node[bias neuron] (L\nn@layerindex-0) at (\nn@node@xb, \nn@node@y) {\nn@nodecaption{\nn@layerindex}{0}};
% we want to modify the last bit to use the loop macro \nn@nodeindex instead of 0
\makeatletter
\xpatchcmd{\layer}{\nn@nodecaption{\nn@layerindex}{0}}{\nn@nodecaption{\nn@layerindex}{\nn@nodeindex}}{}{}
% define the nodeindex to be zero initially
\newcommand\nn@nodeindex{0}
\newcommand{\nodetextx}[2]{
\ifnum \nn@nodeindex=0
$\mathbf{c_1}$
\else
$x_{#2}$
\fi
}
\newcommand{\nodetextz}[2]{$y$}
\newcommand{\nodetexth}[2]{
\ifnum \nn@nodeindex=0
$\mathbf{c_2}$
\else
$h_{#2,1}$
\fi
}
\newcommand{\nodetexthto}[2]{
\ifnum \nn@nodeindex=0
$b$
\else
$h_{#2,2}$
\fi
}
\makeatother
\begin{document}
\begin{neuralnetwork}[height=1.5 ,maintitleheight=1cm,layertitleheight=3cm]
\inputlayer[count=3, title={Input-lag}, text=\nodetextx]
\hiddenlayer[count=5, title={Skjult lag}, text=\nodetexth]
\linklayers
\hiddenlayer[count=4, title={Skjult lag}, text=\nodetexthto]
\linklayers
\outputlayer[count=1, title={Output-lag}, text=\nodetextz]
\linklayers
\end{neuralnetwork}
\end{document}
답변2
해결하다
나는 내 솔루션에 기여하고 싶습니다. 태그 를 넣어 해결해보세요 bias = false
. 더 이상 편견이 무엇인지 모르겠습니다. 다른 블로그에서 발견했는데 효과가 있었습니다.
\documentclass[border=5mm]{standalone}
\usepackage{xpatch}
\usepackage{neuralnetwork}
% this is the command that prints the first node in a layer
% \node[bias neuron] (L\nn@layerindex-0) at (\nn@node@xb, \nn@node@y) {\nn@nodecaption{\nn@layerindex}{0}};
% we want to modify the last bit to use the loop macro \nn@nodeindex instead of 0
\makeatletter
\xpatchcmd{\layer}{\nn@nodecaption{\nn@layerindex}{0}}{\nn@nodecaption{\nn@layerindex}{\nn@nodeindex}}{}{}
% define the nodeindex to be zero initially
\newcommand\nn@nodeindex{0}
\newcommand{\nodetextx}[2]{
\ifnum \nn@nodeindex=0
$\mathbf{c_1}$
\else
$i_{#2}$
\fi
}
\newcommand{\nodetextz}[2]{$o_1$}
\newcommand{\nodetexth}[2]{
\ifnum \nn@nodeindex=0
$\mathbf{c_2}$
\else
$h_{1, #2}$
\fi
}
\newcommand{\nodetexthto}[2]{
\ifnum \nn@nodeindex=0
$b$
\else
$h_{2, #2}$
\fi
}
\makeatother
\begin{document}
\begin{neuralnetwork}[height=1.5 ,maintitleheight=1cm,layertitleheight=5cm]
\inputlayer[count=5, bias=false, title={Input}, text=\nodetextx]
\hiddenlayer[count=10, bias=false, title={Oc1}, text=\nodetexth]
\linklayers
\hiddenlayer[count=10, bias=false, title={Oc2}, text=\nodetexthto]
\linklayers
\outputlayer[count=1, title={Output}, text=\nodetextz]
\linklayers
\end{neuralnetwork}
\end{document}