From 68fac2514df23c2dfce9fcfef7a59fd5fb7c38f1 Mon Sep 17 00:00:00 2001 From: John Loverich Date: Tue, 18 Jun 2024 07:58:29 -0700 Subject: [PATCH] Cleanup --- examples/mnist.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/mnist.py b/examples/mnist.py index 40ad669..5f0a375 100644 --- a/examples/mnist.py +++ b/examples/mnist.py @@ -22,9 +22,7 @@ transformPoly = transforms.Compose( [transforms.ToTensor(), transforms.Normalize((0.0,), (1.0,))] ) -# transformPoly = transformStandard -classes = ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9") normalization = { "max_abs": MaxAbsNormalizationND,