| PipelineExperimentConfig | R Documentation |
Experiment config for SageMaker pipeline.
sagemaker.workflow::Entity -> PipelineExperimentConfig
new()Create a PipelineExperimentConfig
PipelineExperimentConfig$new(experiment_name, trial_name)
experiment_name(Union[str, Parameter, ExecutionVariable, Expression]): the name of the experiment that will be created.
trial_name(Union[str, Parameter, ExecutionVariable, Expression]): the name of the trial that will be created.
# Use pipeline name as the experiment name and pipeline execution id as the trial name::
PipelineExperimentConfig$new(
ExecutionVariables$PIPELINE_NAME, ExecutionVariables$PIPELINE_EXECUTION_ID)
# Use a customized experiment name and pipeline execution id as the trial name::
PipelineExperimentConfig$new(
'MyExperiment', ExecutionVariables$PIPELINE_EXECUTION_ID)
to_request()Returns: the request structure.
PipelineExperimentConfig$to_request()
clone()The objects of this class are cloneable with this method.
PipelineExperimentConfig$clone(deep = FALSE)
deepWhether to make a deep clone.
## ------------------------------------------------
## Method `PipelineExperimentConfig$new`
## ------------------------------------------------
# Use pipeline name as the experiment name and pipeline execution id as the trial name::
PipelineExperimentConfig$new(
ExecutionVariables$PIPELINE_NAME, ExecutionVariables$PIPELINE_EXECUTION_ID)
# Use a customized experiment name and pipeline execution id as the trial name::
PipelineExperimentConfig$new(
'MyExperiment', ExecutionVariables$PIPELINE_EXECUTION_ID)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.