向神经网络图像添加偏置节点

向神经网络图像添加偏置节点

我有一个神经网络图,我想学习如何在隐藏层和输出层向该图添加偏置节点。请指导我。

目前,该图如下所示在此处输入图片描述 我想将其修改为在此处输入图片描述

我现在的代码是

\documentclass{article}
\usepackage{tikz}

\usetikzlibrary{positioning}
\begin{document}


\tikzset{%
    every neuron/.style={
        circle,
        draw,
        minimum size=1cm
    },
    neuron missing/.style={
        draw=none, fill=none,%<-----------------new
        scale=4,
        text height=0.333cm,
        execute at begin node=\color{black}$\vdots$
    },
}

\begin{tikzpicture}[x=1.3cm, y=1.3cm, >=stealth]
    
    \foreach \m/\l [count=\y] in {1,2,3,missing,4}
    \node [fill=black!20, every neuron/.try, neuron \m/.try, ] (input-\m) at (0,2.5-\y) {};%<-----fill=
    
    \foreach \m [count=\y] in {1,missing,2}
    \node [every neuron/.try, neuron \m/.try ] (hidden-\m) at (2,2-\y*1.25) {};
    
    
    \foreach \m [count=\y] in {1,2,missing,3}
    \node [every neuron/.try, neuron \m/.try ] (output-\m) at (4,2.0-\y) {};
    
    \foreach \l [count=\i] in {1,2,3,j}
    \draw [<-] (input-\i) -- ++(-1,0)
    node [above, midway] {$I$};
    
    \foreach \l [count=\i] in {1,k}
    \node [above] at (hidden-\i.north) {$H$};
    
    
    \foreach \l [count=\i] in {1,2,l}
    \draw [->] (output-\i) -- ++(1,0)
    node [above, midway] {$O$};
    
    \foreach \i in {1,...,4}
    \foreach \j in {1,...,2}
    \draw [->] (input-\i) -- (hidden-\j);
    
    \foreach \i in {1,...,2}
    \foreach \j in {1,...,3}
    \draw [->] (hidden-\i) -- (output-\j);
    
    \foreach \l [count=\x from 0] in {Input, Hidden, Output}
    \node [align=center, above] at (\x*2,2) {\l \\ layer};
    \node (nx1) at (hidden-1) {$\mathbf{f_x}$};%<---------------new
    \node (nx2) at (hidden-2) {$\mathbf{f_x}$};%<---------------new
\end{tikzpicture}
\end{document}

答案1

没有什么您的问题中需要完成的新任务。添加额外节点的方式与您已经添加其他节点的方式完全相同:

故意的代码片段:

\node[circle, draw] (b1) at (1,2) {b};
\draw[->]  (b1) -- (hidden-1);
\draw[->]  (b1) -- (hidden-2);

\node[circle, draw] (b2) at (3,2) {b};
\draw[->]  (b2) -- (output-1);
\draw[->]  (b2) -- (output-2);
\draw[->]  (b2) -- (output-3);

具有两个额外节点的图

相关内容