From 904dd721786d8c8168764910a5691aafe67ab919 Mon Sep 17 00:00:00 2001 From: NiiiCo Date: Sun, 30 May 2021 21:47:39 +0200 Subject: [PATCH] test --- src/conv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conv.py b/src/conv.py index 52a6066..b1b6ac6 100644 --- a/src/conv.py +++ b/src/conv.py @@ -28,7 +28,7 @@ mini_batch_size = 10 def shallow(n=3, epochs=60): nets = [] for j in range(n): - print "A shallow net with 100 hidden neurons" + print("A shallow net with 100 hidden neurons") net = Network([ FullyConnectedLayer(n_in=784, n_out=100), SoftmaxLayer(n_in=100, n_out=10)], mini_batch_size)