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
@@ -326,7 +326,7 @@ SageMaker Automatic Model Tuning
326
326
All of the estimators can be used with SageMaker Automatic Model Tuning, which performs hyperparameter tuning jobs.
327
327
A hyperparameter tuning job finds the best version of a model by running many training jobs on your dataset using the algorithm with different values of hyperparameters within ranges
328
328
that you specify. It then chooses the hyperparameter values that result in a model that performs the best, as measured by a metric that you choose.
329
-
If you're not using an Amazon SageMaker built-in algorithm, then the metric is defined by a regular expression (regex) you provide.
329
+
If you're not using an Amazon SageMaker built-in algorithm, then the metric is defined by a regular expression (regex) you provide.
330
330
The hyperparameter tuning job parses the training job's logs to find metrics that match the regex you defined.
331
331
For more information about SageMaker Automatic Model Tuning, see `AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning.html>`__.
332
332
@@ -377,7 +377,7 @@ In addition, the ``fit()`` call uses a list of ``RecordSet`` objects instead of
377
377
# Start hyperparameter tuning job
378
378
my_tuner.fit([train_records, test_records])
379
379
380
-
To help attach a previously-started hyperparameter tuning job to a ``HyperparameterTuner`` instance,
380
+
To help attach a previously-started hyperparameter tuning job to a ``HyperparameterTuner`` instance,
381
381
``fit()`` adds the module path of the class used to create the tuner to the list of static hyperparameters by default.
382
382
If the algorithm you are using cannot handle unknown hyperparameters
383
383
(for example, an Amazon SageMaker built-in algorithm that does not have a custom estimator in the Python SDK),
0 commit comments