Skip to content

Commit aecdc62

Browse files
authored
Merge pull request #10 from jrhyness/jrhyness-patch-1
Removed y value adjustment
2 parents 3ae8c8c + 9319722 commit aecdc62

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Files/mnist_keras_data_handler.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@ def get_data(self, nb_points=500):
4646
(x_test, y_test)= pickle.load(f)
4747

4848
x_train = x_train / 255.0
49-
y_train = y_train / 255.0
5049
x_test = x_test / 255.0
51-
y_test = y_test / 255.0
5250

5351

5452
except Exception:

0 commit comments

Comments
 (0)