aboutsummaryrefslogtreecommitdiff
path: root/tests/architectures
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2024-07-16 07:11:51 -0500
committerjvech <jmvalenciae@unal.edu.co>2024-07-16 07:11:51 -0500
commit7300f3b643a6b2fcc66d4f77c5097d263dabc554 (patch)
tree80c037fa928c33c351807faf5db9a3b1ab7e2b23 /tests/architectures
parent0baa1c1beb9c52e4541c715e04ceb17402e05e19 (diff)
add: tests scripts implemented
Diffstat (limited to 'tests/architectures')
-rw-r--r--tests/architectures/big_nn.cfg20
-rw-r--r--tests/architectures/gauss1d.cfg16
-rw-r--r--tests/architectures/xor.cfg16
3 files changed, 52 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
diff --git a/tests/architectures/gauss1d.cfg b/tests/architectures/gauss1d.cfg
new file mode 100644
index 0000000..db1601d
--- /dev/null
+++ b/tests/architectures/gauss1d.cfg
@@ -0,0 +1,16 @@
+[net]
+loss = square ; options (square)
+epochs = 1000 ; comment
+alpha = 1e-2
+weights_path = data/gauss1d.bin
+inputs = x
+labels = y
+
+; activation options (relu, sigmoid, softplus, leaky_relu)
+
+[layer]
+neurons=10
+activation=sigmoid
+
+[outlayer]
+activation = sigmoid
diff --git a/tests/architectures/xor.cfg b/tests/architectures/xor.cfg
new file mode 100644
index 0000000..e0b06d4
--- /dev/null
+++ b/tests/architectures/xor.cfg
@@ -0,0 +1,16 @@
+[net]
+loss = square ; options (square)
+epochs = 1000 ; comment
+alpha = 0.05
+weights_path = data/xor.bin
+inputs = x,y
+labels = z
+
+; activation options (relu, sigmoid, softplus, leaky_relu)
+
+[layer]
+neurons=10
+activation=relu
+
+[outlayer]
+activation = sigmoid
Feel free to download, copy and edit any repo