Lists the trials in your account. Specify an experiment name to limit the list to the trials that are part of that experiment. Specify a trial component name to limit the list to the trials that associated with that trial component. The list can be filtered to show only trials that were created in a specific time range. The list can be sorted by trial name or creation time.
See https://www.paws-r-sdk.com/docs/sagemaker_list_trials/ for full documentation.
sagemaker_list_trials(
ExperimentName = NULL,
TrialComponentName = NULL,
CreatedAfter = NULL,
CreatedBefore = NULL,
SortBy = NULL,
SortOrder = NULL,
MaxResults = NULL,
NextToken = NULL
)
A filter that returns only trials that are part of the specified experiment.
A filter that returns only trials that are associated with the specified trial component.
A filter that returns only trials created after the specified time.
A filter that returns only trials created before the specified time.
The property used to sort results. The default value is CreationTime
.
The sort order. The default value is Descending
.
The maximum number of trials to return in the response. The default value is 10.
If the previous call to list_trials
didn't
return the full set of trials, the call returns a token for getting the
next set of trials.