Skip to content

Commit

Permalink
remove hard code
Browse files Browse the repository at this point in the history
  • Loading branch information
anantzoid committed Nov 19, 2016
1 parent 8a9f0eb commit 3c5e972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def train(conf, data):
conf.img_height = 28
conf.img_width = 28
conf.channel = 1
conf.num_batches = 10#data.train.num_examples // conf.batch_size
conf.num_batches = data.train.num_examples // conf.batch_size
else:
from keras.datasets import cifar10
data = cifar10.load_data()
Expand Down

0 comments on commit 3c5e972

Please sign in to comment.