Gets a list of HyperParameterTuningJobSummary objects that describe the hyperparameter tuning jobs launched in your account
Source:R/sagemaker_operations.R
sagemaker_list_hyper_parameter_tuning_jobs.RdGets a list of HyperParameterTuningJobSummary objects that describe the hyperparameter tuning jobs launched in your account.
See https://www.paws-r-sdk.com/docs/sagemaker_list_hyper_parameter_tuning_jobs/ for full documentation.
Usage
sagemaker_list_hyper_parameter_tuning_jobs(
NextToken = NULL,
MaxResults = NULL,
SortBy = NULL,
SortOrder = NULL,
NameContains = NULL,
CreationTimeAfter = NULL,
CreationTimeBefore = NULL,
LastModifiedTimeAfter = NULL,
LastModifiedTimeBefore = NULL,
StatusEquals = NULL
)Arguments
- NextToken
If the result of the previous
list_hyper_parameter_tuning_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of tuning jobs, use the token in the next request.- MaxResults
The maximum number of tuning jobs to return. The default value is 10.
- SortBy
The field to sort results by. The default is
Name.- SortOrder
The sort order for results. The default is
Ascending.- NameContains
A string in the tuning job name. This filter returns only tuning jobs whose name contains the specified string.
- CreationTimeAfter
A filter that returns only tuning jobs that were created after the specified time.
- CreationTimeBefore
A filter that returns only tuning jobs that were created before the specified time.
- LastModifiedTimeAfter
A filter that returns only tuning jobs that were modified after the specified time.
- LastModifiedTimeBefore
A filter that returns only tuning jobs that were modified before the specified time.
- StatusEquals
A filter that returns only tuning jobs with the specified status.