From: Brendan Hansen Date: Wed, 27 Jan 2021 18:10:43 +0000 (-0600) Subject: cifar dumb bug fix X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=ad5b66347101ef6bd923a1b166dbd0c898523d23;p=onyx-mnist.git cifar dumb bug fix --- 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);