Ver Fonte

Reduce number of epochs for testing purpose

DricomDragon há 5 anos atrás
pai
commit
3a1319e534
1 ficheiros alterados com 1 adições e 1 exclusões
  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)