Show / Hide Table of Contents

Class ImageClassificationConfig

Config for image classification human labeling task.

Inheritance
System.Object
ImageClassificationConfig
Implements
IMessage<ImageClassificationConfig>
System.IEquatable<ImageClassificationConfig>
IDeepCloneable<ImageClassificationConfig>
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 ImageClassificationConfig : IMessage<ImageClassificationConfig>, IEquatable<ImageClassificationConfig>, IDeepCloneable<ImageClassificationConfig>, IBufferMessage, IMessage

Constructors

ImageClassificationConfig()

Declaration
public ImageClassificationConfig()

ImageClassificationConfig(ImageClassificationConfig)

Declaration
public ImageClassificationConfig(ImageClassificationConfig other)
Parameters
Type Name Description
ImageClassificationConfig other

Properties

AllowMultiLabel

Optional. If allow_multi_label is true, contributors are able to choose multiple labels for one image.

Declaration
public bool AllowMultiLabel { get; set; }
Property Value
Type Description
System.Boolean

AnnotationSpecSet

Required. Annotation spec set resource name.

Declaration
public string AnnotationSpecSet { get; set; }
Property Value
Type Description
System.String

AnswerAggregationType

Optional. The type of how to aggregate answers.

Declaration
public StringAggregationType AnswerAggregationType { get; set; }
Property Value
Type Description
StringAggregationType
Back to top