public interface
SavedBareConcreteFunctionOrBuilder
Known Indirect Subclasses |
Public Methods
abstract long |
getAllowedPositionalArguments()
The prefix of `argument_keywords` which may be identified by position. |
abstract String |
getArgumentKeywords(int index)
A sequence of unique strings, one per Tensor argument. |
abstract com.google.protobuf.ByteString |
getArgumentKeywordsBytes(int index)
A sequence of unique strings, one per Tensor argument. |
abstract int |
getArgumentKeywordsCount()
A sequence of unique strings, one per Tensor argument. |
abstract List<String> |
getArgumentKeywordsList()
A sequence of unique strings, one per Tensor argument. |
abstract String |
getConcreteFunctionName()
Identifies a SavedConcreteFunction. |
abstract com.google.protobuf.ByteString |
getConcreteFunctionNameBytes()
Identifies a SavedConcreteFunction. |
abstract FunctionSpec |
getFunctionSpec()
The spec of the function that this ConcreteFunction is traced from. |
abstract FunctionSpecOrBuilder |
getFunctionSpecOrBuilder()
The spec of the function that this ConcreteFunction is traced from. |
abstract boolean |
hasFunctionSpec()
The spec of the function that this ConcreteFunction is traced from. |
Public Methods
public abstract long getAllowedPositionalArguments ()
The prefix of `argument_keywords` which may be identified by position.
int64 allowed_positional_arguments = 3;
public abstract String getArgumentKeywords (int index)
A sequence of unique strings, one per Tensor argument.
repeated string argument_keywords = 2;
public abstract com.google.protobuf.ByteString getArgumentKeywordsBytes (int index)
A sequence of unique strings, one per Tensor argument.
repeated string argument_keywords = 2;
public abstract int getArgumentKeywordsCount ()
A sequence of unique strings, one per Tensor argument.
repeated string argument_keywords = 2;
public abstract List<String> getArgumentKeywordsList ()
A sequence of unique strings, one per Tensor argument.
repeated string argument_keywords = 2;
public abstract String getConcreteFunctionName ()
Identifies a SavedConcreteFunction.
string concrete_function_name = 1;
public abstract com.google.protobuf.ByteString getConcreteFunctionNameBytes ()
Identifies a SavedConcreteFunction.
string concrete_function_name = 1;
public abstract FunctionSpec getFunctionSpec ()
The spec of the function that this ConcreteFunction is traced from. This allows the ConcreteFunction to be called with nest structure inputs. This field may not be populated. If this field is absent, the concrete function can only be called with flat inputs. TODO(b/169361281): support calling saved ConcreteFunction with structured inputs in C++ SavedModel API.
.tensorflow.FunctionSpec function_spec = 4;
public abstract FunctionSpecOrBuilder getFunctionSpecOrBuilder ()
The spec of the function that this ConcreteFunction is traced from. This allows the ConcreteFunction to be called with nest structure inputs. This field may not be populated. If this field is absent, the concrete function can only be called with flat inputs. TODO(b/169361281): support calling saved ConcreteFunction with structured inputs in C++ SavedModel API.
.tensorflow.FunctionSpec function_spec = 4;
public abstract boolean hasFunctionSpec ()
The spec of the function that this ConcreteFunction is traced from. This allows the ConcreteFunction to be called with nest structure inputs. This field may not be populated. If this field is absent, the concrete function can only be called with flat inputs. TODO(b/169361281): support calling saved ConcreteFunction with structured inputs in C++ SavedModel API.
.tensorflow.FunctionSpec function_spec = 4;