org.tensorflow.framework.SavedModelOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto Show documentation
Show all versions of proto Show documentation
Java API for TensorFlow protocol buffers.
// 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)
com.google.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);
}