From ad5b66347101ef6bd923a1b166dbd0c898523d23 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Wed, 27 Jan 2021 12:10:43 -0600 Subject: [PATCH] cifar dumb bug fix --- src/cifar10.onyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cifar10.onyx b/src/cifar10.onyx index 9b657ea..42bb2e2 100644 --- a/src/cifar10.onyx +++ b/src/cifar10.onyx @@ -120,7 +120,7 @@ output_file := "data/tmp.nn" main :: (args: [] cstr) { if args.count > 1 { - output_file = string.make(args[0]); + output_file = string.make(args[1]); } printf("Network save location: %s\n", output_file); -- 2.25.1