You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+16
Original file line number
Diff line number
Diff line change
@@ -614,6 +614,22 @@ A hyperparameter range can be one of three types: continuous, integer, or catego
614
614
The SageMaker Python SDK provides corresponding classes for defining these different types.
615
615
You can define up to 20 hyperparameters to search over, but each value of a categorical hyperparameter range counts against that limit.
616
616
617
+
By default, training job early stopping is turned off. To enable early stopping for the tuning job, you need to set the ``early_stopping_type`` parameter to ``Auto``:
When early stopping is turned on, Amazon SageMaker will automatically stop a training job if it appears unlikely to produce a model of better quality than other jobs.
631
+
If not using built-in Amazon SageMaker algorithms, note that, for early stopping to be effective, the objective metric should be emitted at epoch level.
632
+
617
633
If you are using an Amazon SageMaker built-in algorithm, you don't need to pass in anything for ``metric_definitions``.
618
634
In addition, the ``fit()`` call uses a list of ``RecordSet`` objects instead of a dictionary:
0 commit comments