aboutsummaryrefslogtreecommitdiff
path: root/src/lib/src/neuralnet_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/src/neuralnet_impl.h')
-rw-r--r--src/lib/src/neuralnet_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/src/neuralnet_impl.h b/src/lib/src/neuralnet_impl.h
index 18694f4..f5a9c63 100644
--- a/src/lib/src/neuralnet_impl.h
+++ b/src/lib/src/neuralnet_impl.h
@@ -30,7 +30,7 @@ typedef struct nnNeuralNetwork {
30/// |network_outputs| points to the last output matrix in |layer_outputs| for 30/// |network_outputs| points to the last output matrix in |layer_outputs| for
31/// convenience. 31/// convenience.
32typedef struct nnQueryObject { 32typedef struct nnQueryObject {
33 int num_layers; 33 int num_layers; // Same as nnNeuralNetwork::num_layers.
34 nnMatrix* layer_outputs; // Output matrices, one output per layer. 34 nnMatrix* layer_outputs; // Output matrices, one output per layer.
35 nnMatrix* network_outputs; // Points to the last output matrix. 35 nnMatrix* network_outputs; // Points to the last output matrix.
36} nnTrainingQueryObject; 36} nnTrainingQueryObject;