Upload bug-introducing DB every 500 iterations rather than every 1000

This commit is contained in:
Marco Castelluccio 2020-02-17 10:58:01 +01:00
Родитель e923d60265
Коммит 6114a57bbe
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -452,7 +452,7 @@ class RegressorFinder(object):
if result is not None:
yield from result
if i % 1000 == 0:
if i % 500 == 0:
compress_and_upload()
db.append(db_path, results())