- 3.10.0 (latest)
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.28.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
public sealed class ExplanationMetadata.Types.InputMetadata.Types.FeatureValueDomain : IMessage<ExplanationMetadata.Types.InputMetadata.Types.FeatureValueDomain>, IEquatable<ExplanationMetadata.Types.InputMetadata.Types.FeatureValueDomain>, IDeepCloneable<ExplanationMetadata.Types.InputMetadata.Types.FeatureValueDomain>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud AI Platform v1 API class ExplanationMetadata.Types.InputMetadata.Types.FeatureValueDomain.
Domain details of the input feature value. Provides numeric information about the feature, such as its range (min, max). If the feature has been pre-processed, for example with z-scoring, then it provides information about how to recover the original feature. For example, if the input feature is an image and it has been pre-processed to obtain 0-mean and stddev = 1 values, then original_mean, and original_stddev refer to the mean and stddev of the original feature (e.g. image tensor) from which input feature (with mean = 0 and stddev = 1) was obtained.
Implements
IMessageExplanationMetadataTypesInputMetadataTypesFeatureValueDomain, IEquatableExplanationMetadataTypesInputMetadataTypesFeatureValueDomain, IDeepCloneableExplanationMetadataTypesInputMetadataTypesFeatureValueDomain, IBufferMessage, IMessageNamespace
Google.Cloud.AIPlatform.V1Assembly
Google.Cloud.AIPlatform.V1.dll
Constructors
FeatureValueDomain()
public FeatureValueDomain()
FeatureValueDomain(FeatureValueDomain)
public FeatureValueDomain(ExplanationMetadata.Types.InputMetadata.Types.FeatureValueDomain other)
Parameter | |
---|---|
Name | Description |
other |
ExplanationMetadataTypesInputMetadataTypesFeatureValueDomain |
Properties
MaxValue
public float MaxValue { get; set; }
The maximum permissible value for this feature.
Property Value | |
---|---|
Type | Description |
float |
MinValue
public float MinValue { get; set; }
The minimum permissible value for this feature.
Property Value | |
---|---|
Type | Description |
float |
OriginalMean
public float OriginalMean { get; set; }
If this input feature has been normalized to a mean value of 0, the original_mean specifies the mean value of the domain prior to normalization.
Property Value | |
---|---|
Type | Description |
float |
OriginalStddev
public float OriginalStddev { get; set; }
If this input feature has been normalized to a standard deviation of 1.0, the original_stddev specifies the standard deviation of the domain prior to normalization.
Property Value | |
---|---|
Type | Description |
float |