I'm trying to create a neural network illustration using the neuralnetwork package. I want to label my bias-neurons separately.
Right now I have the code:
\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}
Which gives me the following illustration:
I want the x_0-neuron to be labelled \textbf{c_1}, the h_{0,1}-neuron to be labelled \textbf{c_2} and finally the h_{0,2}-neuron to be labelled b. How do I do this?
Help is appreciated. Thanks

