
org.tensorflow.util.SavedSliceOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/util/saved_tensor_slice.proto
package org.tensorflow.util;
public interface SavedSliceOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.SavedSlice)
com.google.protobuf.MessageOrBuilder {
/**
*
* Name of the tensor that this slice belongs to. This must be identical to
* the name used to encode the key for this record.
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* Name of the tensor that this slice belongs to. This must be identical to
* the name used to encode the key for this record.
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Extent of the slice. Must have one entry for each of the dimension of the
* tensor that this slice belongs to.
*
*
* .tensorflow.TensorSliceProto slice = 2;
*/
boolean hasSlice();
/**
*
* Extent of the slice. Must have one entry for each of the dimension of the
* tensor that this slice belongs to.
*
*
* .tensorflow.TensorSliceProto slice = 2;
*/
org.tensorflow.framework.TensorSliceProto getSlice();
/**
*
* Extent of the slice. Must have one entry for each of the dimension of the
* tensor that this slice belongs to.
*
*
* .tensorflow.TensorSliceProto slice = 2;
*/
org.tensorflow.framework.TensorSliceProtoOrBuilder getSliceOrBuilder();
/**
*
* The raw data of the slice is stored as a TensorProto. Only raw data are
* stored (we don't fill in fields such as dtype or tensor_shape).
*
*
* .tensorflow.TensorProto data = 3;
*/
boolean hasData();
/**
*
* The raw data of the slice is stored as a TensorProto. Only raw data are
* stored (we don't fill in fields such as dtype or tensor_shape).
*
*
* .tensorflow.TensorProto data = 3;
*/
org.tensorflow.framework.TensorProto getData();
/**
*
* The raw data of the slice is stored as a TensorProto. Only raw data are
* stored (we don't fill in fields such as dtype or tensor_shape).
*
*
* .tensorflow.TensorProto data = 3;
*/
org.tensorflow.framework.TensorProtoOrBuilder getDataOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy