diff options
author | jvech <jmvalenciae@unal.edu.co> | 2024-08-06 14:29:42 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2024-08-06 14:29:42 -0500 |
commit | ebd66e65bf18574fa8905d7b0ae3fbb85bfc9e06 (patch) | |
tree | da128cfa54b20abbff670c89278f0005b0f128cb /tests/architectures/gauss2d.cfg | |
parent | ce0001538820d819bf965a24ffbb6f6e6269859c (diff) |
add: file parsing improved
Things implemented:
* json_read() must die if the key does not exist or the value type is wrong.
* on predict command input should be shown exactly the same
* float precision CLI option should be added.
Diffstat (limited to 'tests/architectures/gauss2d.cfg')
-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 |