Package org.tensorflow.metadata.v0
Interface WeightedFeatureOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WeightedFeature,WeightedFeature.Builder
public interface WeightedFeatureOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PathgetFeature()Path of a base feature to be weighted.PathOrBuildergetFeatureOrBuilder()Path of a base feature to be weighted.LifecycleStagegetLifecycleStage()The lifecycle_stage determines where a feature is expected to be used, and therefore how important issues with it are.StringgetName()Name for the weighted feature.com.google.protobuf.ByteStringgetNameBytes()Name for the weighted feature.PathgetWeightFeature()Path of weight feature to associate with the base feature.PathOrBuildergetWeightFeatureOrBuilder()Path of weight feature to associate with the base feature.booleanhasFeature()Path of a base feature to be weighted.booleanhasLifecycleStage()The lifecycle_stage determines where a feature is expected to be used, and therefore how important issues with it are.booleanhasName()Name for the weighted feature.booleanhasWeightFeature()Path of weight feature to associate with the base feature.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Name for the weighted feature. This should not clash with other features in the same schema.
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
Name for the weighted feature. This should not clash with other features in the same schema.
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name for the weighted feature. This should not clash with other features in the same schema.
optional string name = 1;- Returns:
- The bytes for name.
-
hasFeature
boolean hasFeature()
Path of a base feature to be weighted. Required.
optional .tensorflow.metadata.v0.Path feature = 2;- Returns:
- Whether the feature field is set.
-
getFeature
Path getFeature()
Path of a base feature to be weighted. Required.
optional .tensorflow.metadata.v0.Path feature = 2;- Returns:
- The feature.
-
getFeatureOrBuilder
PathOrBuilder getFeatureOrBuilder()
Path of a base feature to be weighted. Required.
optional .tensorflow.metadata.v0.Path feature = 2;
-
hasWeightFeature
boolean hasWeightFeature()
Path of weight feature to associate with the base feature. Must be same shape as feature. Required.
optional .tensorflow.metadata.v0.Path weight_feature = 3;- Returns:
- Whether the weightFeature field is set.
-
getWeightFeature
Path getWeightFeature()
Path of weight feature to associate with the base feature. Must be same shape as feature. Required.
optional .tensorflow.metadata.v0.Path weight_feature = 3;- Returns:
- The weightFeature.
-
getWeightFeatureOrBuilder
PathOrBuilder getWeightFeatureOrBuilder()
Path of weight feature to associate with the base feature. Must be same shape as feature. Required.
optional .tensorflow.metadata.v0.Path weight_feature = 3;
-
hasLifecycleStage
boolean hasLifecycleStage()
The lifecycle_stage determines where a feature is expected to be used, and therefore how important issues with it are.
optional .tensorflow.metadata.v0.LifecycleStage lifecycle_stage = 4;- Returns:
- Whether the lifecycleStage field is set.
-
getLifecycleStage
LifecycleStage getLifecycleStage()
The lifecycle_stage determines where a feature is expected to be used, and therefore how important issues with it are.
optional .tensorflow.metadata.v0.LifecycleStage lifecycle_stage = 4;- Returns:
- The lifecycleStage.
-
-