Interface TrackableObjectGraphOuterClass.TrackableObjectGraph.TrackableObject.SerializedTensorOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
- All Known Implementing Classes:
TrackableObjectGraphOuterClass.TrackableObjectGraph.TrackableObject.SerializedTensor, TrackableObjectGraphOuterClass.TrackableObjectGraph.TrackableObject.SerializedTensor.Builder
- Enclosing class:
TrackableObjectGraphOuterClass.TrackableObjectGraph.TrackableObject
public static interface TrackableObjectGraphOuterClass.TrackableObjectGraph.TrackableObject.SerializedTensorOrBuilder
extends MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe generated name of the Tensor in the checkpoint.The generated name of the Tensor in the checkpoint.The full name of the variable/tensor, if applicable.The full name of the variable/tensor, if applicable.getName()A name for the Tensor.A name for the Tensor.Methods inherited from interface MessageLiteOrBuilder
isInitialized
-
Method Details
-
getName
String getName()A name for the Tensor. Simple variables have only one `SerializedTensor` named "VARIABLE_VALUE" by convention. This value may be restored on object creation as an optimization.
string name = 1;- Returns:
- The name.
-
getNameBytes
ByteString getNameBytes()A name for the Tensor. Simple variables have only one `SerializedTensor` named "VARIABLE_VALUE" by convention. This value may be restored on object creation as an optimization.
string name = 1;- Returns:
- The bytes for name.
-
getFullName
String getFullName()The full name of the variable/tensor, if applicable. Used to allow name-based loading of checkpoints which were saved using an object-based API. Should match the checkpoint key which would have been assigned by tf.train.Saver.
string full_name = 2;- Returns:
- The fullName.
-
getFullNameBytes
ByteString getFullNameBytes()The full name of the variable/tensor, if applicable. Used to allow name-based loading of checkpoints which were saved using an object-based API. Should match the checkpoint key which would have been assigned by tf.train.Saver.
string full_name = 2;- Returns:
- The bytes for fullName.
-
getCheckpointKey
String getCheckpointKey()The generated name of the Tensor in the checkpoint.
string checkpoint_key = 3;- Returns:
- The checkpointKey.
-
getCheckpointKeyBytes
ByteString getCheckpointKeyBytes()The generated name of the Tensor in the checkpoint.
string checkpoint_key = 3;- Returns:
- The bytes for checkpointKey.
-