diff options
Diffstat (limited to 'tests/architectures/sine.cfg')
-rw-r--r-- | tests/architectures/sine.cfg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/architectures/sine.cfg b/tests/architectures/sine.cfg new file mode 100644 index 0000000..6b0c23f --- /dev/null +++ b/tests/architectures/sine.cfg @@ -0,0 +1,20 @@ +[net] +loss = square ; options (square) +epochs = 1000 ; comment +alpha = 1e-4 +weights_path = data/sine.bin +inputs = x +labels = y + +; activation options (relu, sigmoid, softplus, leaky_relu) + +[layer] +neurons=20 +activation=leaky_relu + +[layer] +neurons=20 +activation=sigmoid + +[outlayer] +activation=linear |