List Experiments
| sagemaker_list_experiments | R Documentation |
Lists all the experiments in your account¶
Description¶
Lists all the experiments in your account. The list can be filtered to show only experiments that were created in a specific time range. The list can be sorted by experiment name or creation time.
Usage¶
Arguments¶
CreatedAfterA filter that returns only experiments created after the specified time.
CreatedBeforeA filter that returns only experiments created before the specified time.
SortByThe property used to sort results. The default value is
CreationTime.SortOrderThe sort order. The default value is
Descending.NextTokenIf the previous call to
list_experimentsdidn't return the full set of experiments, the call returns a token for getting the next set of experiments.MaxResultsThe maximum number of experiments to return in the response. The default value is 10.
Value¶
A list with the following syntax:
list(
ExperimentSummaries = list(
list(
ExperimentArn = "string",
ExperimentName = "string",
DisplayName = "string",
ExperimentSource = list(
SourceArn = "string",
SourceType = "string"
),
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)