default every epoch not 3x per epoch

This commit is contained in:
Damian Stewart 2023-09-10 21:41:09 +02:00
parent 3fddef3698
commit 74c21602fc
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import shutil
from plugins.plugins import BasePlugin
from train import save_model
EVERY_N_EPOCHS = 0.3 # how often to save. integers >= 1 save at the end of every nth epoch. floats < 1 subdivide the epoch evenly (eg 0.33 = 3 subdivisions)
EVERY_N_EPOCHS = 1 # how often to save. integers >= 1 save at the end of every nth epoch. floats < 1 subdivide the epoch evenly (eg 0.33 = 3 subdivisions)
class InterruptiblePlugin(BasePlugin):