Update readme and docs after change from loop to epochs.

This commit is contained in:
Tomasz Sobczyk
2020-10-22 15:57:46 +02:00
committed by nodchip
parent fc3788f630
commit 31f94a18b3
3 changed files with 3 additions and 3 deletions

View File

@@ -922,7 +922,7 @@ namespace Learner
auto mini_batch_size = LEARN_MINI_BATCH_SIZE;
// Number of epochs
uint64_t epochs = 1;
uint64_t epochs = std::numeric_limits<uint64_t>::max();
// Game file storage folder (get game file with relative path from here)
string base_dir;