Skip to content

Commit

Permalink
Update num epochs
Browse files Browse the repository at this point in the history
  • Loading branch information
calebrob6 committed Feb 23, 2024
1 parent f07b4a7 commit 176d22c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/custom_segmentation_trainer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
}
],
"source": [
"trainer = pl.Trainer(min_epochs=150, max_epochs=300, log_every_n_steps=50)"
"trainer = pl.Trainer(min_epochs=150, max_epochs=250, log_every_n_steps=50)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/custom_segmentation_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def on_train_epoch_start(self) -> None:
# validate that the task's hyperparameters are as expected
task.hparams

trainer = pl.Trainer(min_epochs=150, max_epochs=300, log_every_n_steps=50)
trainer = pl.Trainer(min_epochs=150, max_epochs=250, log_every_n_steps=50)

trainer.fit(task, dm)

Expand Down

0 comments on commit 176d22c

Please sign in to comment.