export tutorials changed in 762dc7f (#500)

Co-authored-by: dario-coscia <dario-coscia@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-03-17 13:46:02 +01:00
committed by Nicola Demo
parent 73f512b958
commit 01b29ccbf7
2 changed files with 39 additions and 69326 deletions

View File

@@ -244,7 +244,7 @@ trainer.callbacks[0].saved_metrics[:3] # only the first three epochs
#
# We can for example try the `EarlyStopping` routine, which automatically stops the training when a specific metric converged (here the `train_loss`). In order to let the training keep going forever set `max_epochs=-1`.
# In[9]:
# In[ ]:
model = FeedForward(
@@ -259,6 +259,7 @@ trainer = Trainer(
accelerator="cpu",
max_epochs=-1,
enable_model_summary=False,
enable_progress_bar=False,
val_size=0.2,
train_size=0.8,
test_size=0.0,