Class: Aws::Bedrock::Types::EvaluatorModelConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-bedrock/types.rb

Overview

Note:

EvaluatorModelConfig is a union - when making an API calls you must set exactly one of the members.

Note:

EvaluatorModelConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluatorModelConfig corresponding to the set member.

Specifies the model configuration for the evaluator model. ‘EvaluatorModelConfig` is required for evaluation jobs that use a knowledge base or in model evaluation job that use a model as judge. This model computes all evaluation related metrics.

Direct Known Subclasses

BedrockEvaluatorModels, Unknown

Defined Under Namespace

Classes: BedrockEvaluatorModels, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bedrock_evaluator_modelsArray<Types::BedrockEvaluatorModel>

The evaluator model used in knowledge base evaluation job or in model evaluation job that use a model as judge. This model computes all evaluation related metrics.

Returns:



1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
# File 'lib/aws-sdk-bedrock/types.rb', line 1606

class EvaluatorModelConfig < Struct.new(
  :bedrock_evaluator_models,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BedrockEvaluatorModels < EvaluatorModelConfig; end
  class Unknown < EvaluatorModelConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1606
1607
1608
# File 'lib/aws-sdk-bedrock/types.rb', line 1606

def unknown
  @unknown
end