We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I get the weights and biases of the trained neural network?
The text was updated successfully, but these errors were encountered:
Each layer (TNNetLayer) has a list of Neurons:
property Neurons: TNNetNeuronList read FNeurons;
The neuron list is implemented as follows:
TNNetNeuronList = class (specialize TFPGObjectList<TNNetNeuron>)
From TNNetNeuron, you have:
property Weights: TNNetVolume read FWeights;
So, regarding weights, you'll load from TNNetNeuron.Weights.
I'll FUP about bias.
Sorry, something went wrong.
Allows reading the bias value. #118
f6baf50
Just added support to read the bias in the most recent commit.
joaopauloschuler
No branches or pull requests
How can I get the weights and biases of the trained neural network?
The text was updated successfully, but these errors were encountered: