n2p2 - A neural network potential package
|
One neural network layer. More...
Public Attributes | |
int | numNeurons |
Number of neurons in this layer \( N_n \). | |
int | numNeuronsPrevLayer |
Number of neurons in previous layer \( N_{n-1} \). | |
ActivationFunction | activationFunction |
Common activation function for all neurons in this layer. | |
Neuron * | neurons |
Array of neurons in this layer. | |
One neural network layer.
Definition at line 394 of file NeuralNetwork.h.
int nnp::NeuralNetwork::Layer::numNeurons |
Number of neurons in this layer \( N_n \).
Definition at line 397 of file NeuralNetwork.h.
Referenced by nnp::NeuralNetwork::allocateLayer(), and nnp::NeuralNetwork::propagateLayer().
int nnp::NeuralNetwork::Layer::numNeuronsPrevLayer |
Number of neurons in previous layer \( N_{n-1} \).
Definition at line 399 of file NeuralNetwork.h.
Referenced by nnp::NeuralNetwork::allocateLayer(), and nnp::NeuralNetwork::propagateLayer().
ActivationFunction nnp::NeuralNetwork::Layer::activationFunction |
Common activation function for all neurons in this layer.
Definition at line 401 of file NeuralNetwork.h.
Referenced by nnp::NeuralNetwork::allocateLayer(), and nnp::NeuralNetwork::propagateLayer().
Neuron* nnp::NeuralNetwork::Layer::neurons |
Array of neurons in this layer.
Definition at line 403 of file NeuralNetwork.h.
Referenced by nnp::NeuralNetwork::allocateLayer(), and nnp::NeuralNetwork::propagateLayer().