Browse Source

Reduce number of epochs for testing purpose

DricomDragon 5 years ago
parent
commit
3a1319e534
1 changed files with 1 additions and 1 deletions
  1. 1 1
      python/start_session.py

+ 1 - 1
python/start_session.py

@@ -13,7 +13,7 @@ from lab import generator, trainer, benchmark
 learnRate = 0.05
 activation = expit
 activationDerivative = lambda x : expit(x) * (1 - expit(x))
-epochs = 10
+epochs = 1
 
 # Session
 newNetwork = generator.generate(activation, activationDerivative, generator.gaussUnitDev)