Package org.tensorflow.framework
Interface VariableDefOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VariableDef,VariableDef.Builder
public interface VariableDefOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariableAggregationgetAggregation()Indicates how a distributed variable will be aggregated.intgetAggregationValue()Indicates how a distributed variable will be aggregated.java.lang.StringgetInitializerName()Name of the initializer op.com.google.protobuf.ByteStringgetInitializerNameBytes()Name of the initializer op.java.lang.StringgetInitialValueName()Name of the tensor holding the variable's initial value.com.google.protobuf.ByteStringgetInitialValueNameBytes()Name of the tensor holding the variable's initial value.booleangetIsResource()Whether to represent this as a ResourceVariable.SaveSliceInfoDefgetSaveSliceInfoDef()Support for saving variables as slices of a larger variable.SaveSliceInfoDefOrBuildergetSaveSliceInfoDefOrBuilder()Support for saving variables as slices of a larger variable.java.lang.StringgetSnapshotName()Name of the snapshot tensor.com.google.protobuf.ByteStringgetSnapshotNameBytes()Name of the snapshot tensor.VariableSynchronizationgetSynchronization()Indicates when a distributed variable will be synced.intgetSynchronizationValue()Indicates when a distributed variable will be synced.booleangetTrainable()Whether this variable should be trained.java.lang.StringgetVariableName()Name of the variable tensor.com.google.protobuf.ByteStringgetVariableNameBytes()Name of the variable tensor.booleanhasSaveSliceInfoDef()Support for saving variables as slices of a larger variable.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVariableName
java.lang.String getVariableName()
Name of the variable tensor.
string variable_name = 1;- Returns:
- The variableName.
-
getVariableNameBytes
com.google.protobuf.ByteString getVariableNameBytes()
Name of the variable tensor.
string variable_name = 1;- Returns:
- The bytes for variableName.
-
getInitialValueName
java.lang.String getInitialValueName()
Name of the tensor holding the variable's initial value.
string initial_value_name = 6;- Returns:
- The initialValueName.
-
getInitialValueNameBytes
com.google.protobuf.ByteString getInitialValueNameBytes()
Name of the tensor holding the variable's initial value.
string initial_value_name = 6;- Returns:
- The bytes for initialValueName.
-
getInitializerName
java.lang.String getInitializerName()
Name of the initializer op.
string initializer_name = 2;- Returns:
- The initializerName.
-
getInitializerNameBytes
com.google.protobuf.ByteString getInitializerNameBytes()
Name of the initializer op.
string initializer_name = 2;- Returns:
- The bytes for initializerName.
-
getSnapshotName
java.lang.String getSnapshotName()
Name of the snapshot tensor.
string snapshot_name = 3;- Returns:
- The snapshotName.
-
getSnapshotNameBytes
com.google.protobuf.ByteString getSnapshotNameBytes()
Name of the snapshot tensor.
string snapshot_name = 3;- Returns:
- The bytes for snapshotName.
-
hasSaveSliceInfoDef
boolean hasSaveSliceInfoDef()
Support for saving variables as slices of a larger variable.
.tensorflow.SaveSliceInfoDef save_slice_info_def = 4;- Returns:
- Whether the saveSliceInfoDef field is set.
-
getSaveSliceInfoDef
SaveSliceInfoDef getSaveSliceInfoDef()
Support for saving variables as slices of a larger variable.
.tensorflow.SaveSliceInfoDef save_slice_info_def = 4;- Returns:
- The saveSliceInfoDef.
-
getSaveSliceInfoDefOrBuilder
SaveSliceInfoDefOrBuilder getSaveSliceInfoDefOrBuilder()
Support for saving variables as slices of a larger variable.
.tensorflow.SaveSliceInfoDef save_slice_info_def = 4;
-
getIsResource
boolean getIsResource()
Whether to represent this as a ResourceVariable.
bool is_resource = 5;- Returns:
- The isResource.
-
getTrainable
boolean getTrainable()
Whether this variable should be trained.
bool trainable = 7;- Returns:
- The trainable.
-
getSynchronizationValue
int getSynchronizationValue()
Indicates when a distributed variable will be synced.
.tensorflow.VariableSynchronization synchronization = 8;- Returns:
- The enum numeric value on the wire for synchronization.
-
getSynchronization
VariableSynchronization getSynchronization()
Indicates when a distributed variable will be synced.
.tensorflow.VariableSynchronization synchronization = 8;- Returns:
- The synchronization.
-
getAggregationValue
int getAggregationValue()
Indicates how a distributed variable will be aggregated.
.tensorflow.VariableAggregation aggregation = 9;- Returns:
- The enum numeric value on the wire for aggregation.
-
getAggregation
VariableAggregation getAggregation()
Indicates how a distributed variable will be aggregated.
.tensorflow.VariableAggregation aggregation = 9;- Returns:
- The aggregation.
-
-