Synapse {Microsoft.VisualBasic.MachineLearning.NeuralNetwork} | .NET clr documentation |
(神经元的)突触 a connection between two nerve cells
可以将这个对象看作为网络节点之间的边链接
# namespace Microsoft.VisualBasic.MachineLearning.NeuralNetwork
export class Synapse {
# a.OutputNeuron.Gradient * a.Weight
Gradient: double;
InputNeuron: Neuron;
OutputNeuron: Neuron;
# a.Weight * a.InputNeuron.Value
Value: double;
# 两个神经元之间的连接强度
Weight: double;
WeightDelta: double;
}