Class: Aws::SageMaker::Types::ClarifyShapConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

The configuration for SHAP analysis using SageMaker Clarify Explainer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#number_of_samplesInteger

The number of samples to be used for analysis by the Kernal SHAP algorithm.

The number of samples determines the size of the synthetic dataset, which has an impact on latency of explainability requests. For more information, see the Synthetic data of Configure and create an endpoint.

Returns:

  • (Integer)


5181
5182
5183
5184
5185
5186
5187
5188
5189
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5181

class ClarifyShapConfig < Struct.new(
  :shap_baseline_config,
  :number_of_samples,
  :use_logit,
  :seed,
  :text_config)
  SENSITIVE = []
  include Aws::Structure
end

#seedInteger

The starting value used to initialize the random number generator in the explainer. Provide a value for this parameter to obtain a deterministic SHAP result.

Returns:

  • (Integer)


5181
5182
5183
5184
5185
5186
5187
5188
5189
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5181

class ClarifyShapConfig < Struct.new(
  :shap_baseline_config,
  :number_of_samples,
  :use_logit,
  :seed,
  :text_config)
  SENSITIVE = []
  include Aws::Structure
end

#shap_baseline_configTypes::ClarifyShapBaselineConfig

The configuration for the SHAP baseline of the Kernal SHAP algorithm.



5181
5182
5183
5184
5185
5186
5187
5188
5189
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5181

class ClarifyShapConfig < Struct.new(
  :shap_baseline_config,
  :number_of_samples,
  :use_logit,
  :seed,
  :text_config)
  SENSITIVE = []
  include Aws::Structure
end

#text_configTypes::ClarifyTextConfig

A parameter that indicates if text features are treated as text and explanations are provided for individual units of text. Required for natural language processing (NLP) explainability only.



5181
5182
5183
5184
5185
5186
5187
5188
5189
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5181

class ClarifyShapConfig < Struct.new(
  :shap_baseline_config,
  :number_of_samples,
  :use_logit,
  :seed,
  :text_config)
  SENSITIVE = []
  include Aws::Structure
end

#use_logitBoolean

A Boolean toggle to indicate if you want to use the logit function (true) or log-odds units (false) for model predictions. Defaults to false.

Returns:

  • (Boolean)


5181
5182
5183
5184
5185
5186
5187
5188
5189
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5181

class ClarifyShapConfig < Struct.new(
  :shap_baseline_config,
  :number_of_samples,
  :use_logit,
  :seed,
  :text_config)
  SENSITIVE = []
  include Aws::Structure
end