aboutsummaryrefslogtreecommitdiff
path: root/src/nn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nn.h')
-rw-r--r--src/nn.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nn.h b/src/nn.h
index 2fcf9be..9005364 100644
--- a/src/nn.h
+++ b/src/nn.h
@@ -29,6 +29,11 @@ typedef struct Layer {
void nn_network_init_weights(Layer *network, size_t nmemb, size_t input_cols);
void nn_network_free_weights(Layer *network, size_t nmemb);
+void nn_network_predict(
+ double *out, size_t out_shape[2],
+ double *input, size_t input_shape[2],
+ Layer network[], size_t network_size);
+
void nn_network_train(
Layer network[], size_t network_size,
double *input, size_t input_shape[2],
Feel free to download, copy and edit any repo