@@ -102,7 +102,7 @@ class ModelCheckpoint(Callback):
102102 saved (``model.save_weights(filepath)``), else the full model
103103 is saved (``model.save(filepath)``).
104104 every_n_train_steps: Number of training steps between checkpoints.
105- If ``every_n_train_steps == None or every_n_train_steps == 0``, we skip saving during training
105+ If ``every_n_train_steps == None or every_n_train_steps == 0``, we skip saving during training.
106106 To disable, set ``every_n_train_steps = 0``. This value must be ``None`` or non-negative.
107107 This must be mutually exclusive with ``train_time_interval`` and ``every_n_val_epochs``.
108108 train_time_interval: Checkpoints are monitored at the specified time interval.
@@ -111,7 +111,7 @@ class ModelCheckpoint(Callback):
111111 guaranteed to execute at the exact time specified, but should be close.
112112 This must be mutually exclusive with ``every_n_train_steps`` and ``every_n_val_epochs``.
113113 every_n_val_epochs: Number of validation epochs between checkpoints.
114- If ``every_n_val_epochs == None or every_n_val_epochs == 0``, we skip saving on validation end
114+ If ``every_n_val_epochs == None or every_n_val_epochs == 0``, we skip saving on validation end.
115115 To disable, set ``every_n_val_epochs = 0``. This value must be ``None`` or non-negative.
116116 This must be mutually exclusive with ``every_n_train_steps`` and ``train_time_interval``.
117117 Setting both ``ModelCheckpoint(..., every_n_val_epochs=V)`` and
0 commit comments