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