aboutsummaryrefslogtreecommitdiff
path: root/src/nn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nn.h')
-rw-r--r--src/nn.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nn.h b/src/nn.h
index d66fabc..a339dfc 100644
--- a/src/nn.h
+++ b/src/nn.h
@@ -24,4 +24,7 @@ void nn_layer_backward(Layer *layer, double *out, size_t out_shape[2]); //TODO
double sigmoid(double x);
double relu(double x);
double identity(double x);
+
+
+void nn_forward(double **out, double *input, size_t input_shape[2], Layer network[], size_t network_size);
#endif
Feel free to download, copy and edit any repo