Class: Aws::SageMaker::Types::ExperimentConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ExperimentConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ExperimentConfig data as a hash:
{
experiment_name: "ExperimentConfigName",
trial_name: "ExperimentConfigName",
trial_component_display_name: "ExperimentConfigName",
}
Configuration for the experiment.
Instance Attribute Summary collapse
-
#experiment_name ⇒ String
The name of the experiment.
-
#trial_component_display_name ⇒ String
Display name for the trial component.
-
#trial_name ⇒ String
The name of the trial.
Instance Attribute Details
#experiment_name ⇒ String
The name of the experiment.
8973 8974 8975 8976 8977 8978 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8973 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name) include Aws::Structure end |
#trial_component_display_name ⇒ String
Display name for the trial component.
8973 8974 8975 8976 8977 8978 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8973 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name) include Aws::Structure end |
#trial_name ⇒ String
The name of the trial.
8973 8974 8975 8976 8977 8978 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8973 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name) include Aws::Structure end |