Skip to content

Commit 487ad8a

Browse files
committed
removed print
1 parent 34f0c60 commit 487ad8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/demo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ void network_demo(int argc, char *argv[]) {
221221

222222
size_t sizes_static[] = {2, 2, 1};
223223
network = network_new(nb_layers, sizes_static);
224-
network_sgd(&network, &dataset, 100000, 4, 1.f, 0.5, &dataset, 1, 1, 0);
224+
network_sgd(&network, &dataset, 100000, 4, 1.f, 0.5, &dataset, 0, 0, 0);
225225
} else if (!strcmp("add", argv[2])) {
226226
// --- Create dataset---
227227
dataset_new(&dataset, 8);
@@ -237,7 +237,7 @@ void network_demo(int argc, char *argv[]) {
237237

238238
size_t sizes_static[] = {3, 3, 2};
239239
network = network_new(nb_layers, sizes_static);
240-
network_sgd(&network, &dataset, 1000, 4, 12.f, 0.5, &dataset, 1, 1, 0);
240+
network_sgd(&network, &dataset, 1000, 4, 12.f, 0.5, &dataset, 0, 0, 0);
241241
}
242242
network_print_results(network, dataset);
243243

0 commit comments

Comments
 (0)