Matlab神经网络图解说明

Explanation of Diagram of Matlab Neural Network

我的神经网络是这样的 但是这张图让我有点困惑。

显然我们有 10 个输入值和 2 个输出值。

还有10个隐藏神经元。所以我假设 10 个输入中的每一个都连接到 10 个隐藏神经元中的每一个?

还有 Ws 和 Bs 是什么意思?

我还没有在 Matlab 的文档中找到对这个图的描述,但它是 here. You have one hidden layer with neurons which are each connected to all the inputs. Note that the number of neurons won't always be the same as the number of inputs, which are both 10 here. W=weights, b=biases. There is a nice intro here 所示图的简化版。