org.tensorflow.framework.AssetFileDefOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/meta_graph.proto
package org.tensorflow.framework;
public interface AssetFileDefOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.AssetFileDef)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* The tensor to bind the asset filename to.
*
*
* .tensorflow.TensorInfo tensor_info = 1;
*/
boolean hasTensorInfo();
/**
*
* The tensor to bind the asset filename to.
*
*
* .tensorflow.TensorInfo tensor_info = 1;
*/
org.tensorflow.framework.TensorInfo getTensorInfo();
/**
*
* The tensor to bind the asset filename to.
*
*
* .tensorflow.TensorInfo tensor_info = 1;
*/
org.tensorflow.framework.TensorInfoOrBuilder getTensorInfoOrBuilder();
/**
*
* The filename within an assets directory. Note: does not include the path
* prefix, i.e. directories. For an asset at /tmp/path/vocab.txt, the filename
* would be "vocab.txt".
*
*
* string filename = 2;
*/
java.lang.String getFilename();
/**
*
* The filename within an assets directory. Note: does not include the path
* prefix, i.e. directories. For an asset at /tmp/path/vocab.txt, the filename
* would be "vocab.txt".
*
*
* string filename = 2;
*/
org.nd4j.shade.protobuf.ByteString
getFilenameBytes();
}