org.tensorflow.framework.SavedModelOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/saved_model.proto
package org.tensorflow.framework;
public interface SavedModelOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.SavedModel)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* The schema version of the SavedModel instance. Used for versioning when
* making future changes to the specification/implementation. Initial value
* at release will be 1.
*
*
* int64 saved_model_schema_version = 1;
*/
long getSavedModelSchemaVersion();
/**
*
* One or more MetaGraphs.
*
*
* repeated .tensorflow.MetaGraphDef meta_graphs = 2;
*/
java.util.List
getMetaGraphsList();
/**
*
* One or more MetaGraphs.
*
*
* repeated .tensorflow.MetaGraphDef meta_graphs = 2;
*/
org.tensorflow.framework.MetaGraphDef getMetaGraphs(int index);
/**
*
* One or more MetaGraphs.
*
*
* repeated .tensorflow.MetaGraphDef meta_graphs = 2;
*/
int getMetaGraphsCount();
/**
*
* One or more MetaGraphs.
*
*
* repeated .tensorflow.MetaGraphDef meta_graphs = 2;
*/
java.util.List extends org.tensorflow.framework.MetaGraphDefOrBuilder>
getMetaGraphsOrBuilderList();
/**
*
* One or more MetaGraphs.
*
*
* repeated .tensorflow.MetaGraphDef meta_graphs = 2;
*/
org.tensorflow.framework.MetaGraphDefOrBuilder getMetaGraphsOrBuilder(
int index);
}