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