org.tensorflow.framework.FunctionDefLibraryOrBuilder 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/framework/function.proto
package org.tensorflow.framework;
public interface FunctionDefLibraryOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.FunctionDefLibrary)
com.google.protobuf.MessageOrBuilder {
/**
* repeated .tensorflow.FunctionDef function = 1;
*/
java.util.List
getFunctionList();
/**
* repeated .tensorflow.FunctionDef function = 1;
*/
org.tensorflow.framework.FunctionDef getFunction(int index);
/**
* repeated .tensorflow.FunctionDef function = 1;
*/
int getFunctionCount();
/**
* repeated .tensorflow.FunctionDef function = 1;
*/
java.util.List extends org.tensorflow.framework.FunctionDefOrBuilder>
getFunctionOrBuilderList();
/**
* repeated .tensorflow.FunctionDef function = 1;
*/
org.tensorflow.framework.FunctionDefOrBuilder getFunctionOrBuilder(
int index);
/**
* repeated .tensorflow.GradientDef gradient = 2;
*/
java.util.List
getGradientList();
/**
* repeated .tensorflow.GradientDef gradient = 2;
*/
org.tensorflow.framework.GradientDef getGradient(int index);
/**
* repeated .tensorflow.GradientDef gradient = 2;
*/
int getGradientCount();
/**
* repeated .tensorflow.GradientDef gradient = 2;
*/
java.util.List extends org.tensorflow.framework.GradientDefOrBuilder>
getGradientOrBuilderList();
/**
* repeated .tensorflow.GradientDef gradient = 2;
*/
org.tensorflow.framework.GradientDefOrBuilder getGradientOrBuilder(
int index);
}