org.tensorflow.framework.VariantTensorDataProtoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/framework/tensor.proto
package org.tensorflow.framework;
public interface VariantTensorDataProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.VariantTensorDataProto)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* Name of the type of objects being serialized.
*
*
* string type_name = 1;
*/
java.lang.String getTypeName();
/**
*
* Name of the type of objects being serialized.
*
*
* string type_name = 1;
*/
org.nd4j.shade.protobuf.ByteString
getTypeNameBytes();
/**
*
* Portions of the object that are not Tensors.
*
*
* bytes metadata = 2;
*/
org.nd4j.shade.protobuf.ByteString getMetadata();
/**
*
* Tensors contained within objects being serialized.
*
*
* repeated .tensorflow.TensorProto tensors = 3;
*/
java.util.List
getTensorsList();
/**
*
* Tensors contained within objects being serialized.
*
*
* repeated .tensorflow.TensorProto tensors = 3;
*/
org.tensorflow.framework.TensorProto getTensors(int index);
/**
*
* Tensors contained within objects being serialized.
*
*
* repeated .tensorflow.TensorProto tensors = 3;
*/
int getTensorsCount();
/**
*
* Tensors contained within objects being serialized.
*
*
* repeated .tensorflow.TensorProto tensors = 3;
*/
java.util.List extends org.tensorflow.framework.TensorProtoOrBuilder>
getTensorsOrBuilderList();
/**
*
* Tensors contained within objects being serialized.
*
*
* repeated .tensorflow.TensorProto tensors = 3;
*/
org.tensorflow.framework.TensorProtoOrBuilder getTensorsOrBuilder(
int index);
}