Skip to content
Snippets Groups Projects
Commit 3e4d943a authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 64662b37
Branches
No related tags found
No related merge requests found
......@@ -26,6 +26,8 @@ NUM_EPOCHS = 60
EARLY_STOP = True
PATIENCE = 7
USE_EMA = False
EMA_OVERWRITE_FREQUENCY = 5
EMA_MOMENTUM = 0.99
......@@ -883,7 +885,7 @@ class IcingIntensityFCN:
best_test_mcc = 0
if EARLY_STOP:
es = EarlyStop()
es = EarlyStop(patience=PATIENCE)
for epoch in range(NUM_EPOCHS):
self.train_loss.reset_states()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment