increasing batch size makes the training process sensibly faster.
This commit is contained in:
parent
cb34f2c5e9
commit
cc861f6ffb
1 changed files with 1 additions and 1 deletions
2
train.py
2
train.py
|
|
@ -13,7 +13,7 @@ BETA1 = 0.9
|
||||||
BETA2 = 0.999
|
BETA2 = 0.999
|
||||||
EPSILON = 1e-8
|
EPSILON = 1e-8
|
||||||
EPOCHS = 10
|
EPOCHS = 10
|
||||||
BATCH_SIZE = 60
|
BATCH_SIZE = 800
|
||||||
HIDDEN_LAYERS = 4
|
HIDDEN_LAYERS = 4
|
||||||
|
|
||||||
# Training images. It's a numpy array of size 60000x784.
|
# Training images. It's a numpy array of size 60000x784.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue