소스 검색

Reduce number of epochs for testing purpose

DricomDragon 5 년 전
부모
커밋
3a1319e534
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)