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
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -268,7 +268,10 @@ The example notebook is is located here:
268
268
SageMaker Automatic Model Tuning
269
269
--------------------------------
270
270
271
-
All of the estimators can be used with SageMaker Automatic Model Tuning, which performs hyperparameter tuning jobs. A hyperparameter tuning job runs multiple training jobs that differ by their hyperparameters to find the best one. The SageMaker Python SDK contains a ``HyperparameterTuner`` class for creating and interacting with hyperparameter training jobs. You can read more about SageMaker Automatic Model Tuning in the `AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning.html>`__.
271
+
All of the estimators can be used with SageMaker Automatic Model Tuning, which performs hyperparameter tuning jobs.
272
+
A hyperparameter tuning job runs multiple training jobs that differ by the values of their hyperparameters to find the best training job.
273
+
The SageMaker Python SDK contains a ``HyperparameterTuner`` class for creating and interacting with hyperparameter training jobs.
274
+
You can read more about SageMaker Automatic Model Tuning in the `AWS documentation <https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning.html>`__.
272
275
273
276
Here is a basic example of how to use ``HyperparameterTuner`` to start tuning jobs instead of using an estimator to start training jobs:
274
277
@@ -296,7 +299,8 @@ Here is a basic example of how to use ``HyperparameterTuner`` to start tuning jo
296
299
# Tear down the SageMaker endpoint
297
300
my_tuner.delete_endpoint()
298
301
299
-
There is also an analytics object with each ``HyperparameterTuner`` instance, which presents useful information about the hyperparameter tuning job, like a pandas dataframe summarizing the associated training jobs:
302
+
There is also an analytics object associated with each ``HyperparameterTuner`` instance that presents useful information about the hyperparameter tuning job.
303
+
For example, the ``dataframe`` method gets a pandas dataframe summarizing the associated training jobs:
300
304
301
305
.. code:: python
302
306
@@ -308,7 +312,7 @@ There is also an analytics object with each ``HyperparameterTuner`` instance, wh
308
312
309
313
For more detailed examples of running hyperparameter tuning jobs, see: https://github.com/awslabs/amazon-sagemaker-examples.
310
314
311
-
For more detailed explanations of the classes mentioned, see:
315
+
For more detailed explanations of the classes that this library provides for automatic model tuning, see:
312
316
313
317
- `API docs for HyperparameterTuner and parameter range classes <https://sagemaker.readthedocs.io/en/latest/tuner.html>`__
314
318
- `API docs for analytics classes <https://sagemaker.readthedocs.io/en/latest/analytics.html>`__
0 commit comments