Show / Hide Table of Contents

Class SearchExampleComparisonsResponse.Types.ExampleComparison

Example comparisons comparing ground truth output and predictions for a specific input.

Inheritance
System.Object
SearchExampleComparisonsResponse.Types.ExampleComparison
Implements
IMessage<SearchExampleComparisonsResponse.Types.ExampleComparison>
System.IEquatable<SearchExampleComparisonsResponse.Types.ExampleComparison>
IDeepCloneable<SearchExampleComparisonsResponse.Types.ExampleComparison>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class ExampleComparison : IMessage<SearchExampleComparisonsResponse.Types.ExampleComparison>, IEquatable<SearchExampleComparisonsResponse.Types.ExampleComparison>, IDeepCloneable<SearchExampleComparisonsResponse.Types.ExampleComparison>, IBufferMessage, IMessage

Constructors

ExampleComparison()

Declaration
public ExampleComparison()

ExampleComparison(SearchExampleComparisonsResponse.Types.ExampleComparison)

Declaration
public ExampleComparison(SearchExampleComparisonsResponse.Types.ExampleComparison other)
Parameters
Type Name Description
SearchExampleComparisonsResponse.Types.ExampleComparison other

Properties

GroundTruthExample

The ground truth output for the input.

Declaration
public Example GroundTruthExample { get; set; }
Property Value
Type Description
Example

ModelCreatedExamples

Predictions by the model for the input.

Declaration
public RepeatedField<Example> ModelCreatedExamples { get; }
Property Value
Type Description
RepeatedField<Example>
Back to top