Home
last modified time | relevance | path

Searched refs:function_spec (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/saved_model/
Dfunction_serialization.py26 def _serialize_function_spec(function_spec, coder): argument
29 proto.fullargspec.CopyFrom(coder.encode_structure(function_spec.fullargspec))
30 proto.is_method = function_spec.is_method
32 coder.encode_structure(function_spec.args_to_prepend))
34 coder.encode_structure(function_spec.kwargs_to_include))
36 coder.encode_structure(function_spec.input_signature))
81 function_spec_proto = _serialize_function_spec(function.function_spec, coder)
82 proto.function_spec.CopyFrom(function_spec_proto)
Dfunction_deserialization.py154 def __init__(self, python_function, name, function_spec, concrete_functions): argument
159 self._function_spec = function_spec
181 function_spec = _deserialize_function_spec(saved_function.function_spec,
215 function_spec,
221 decorator_argspec=function_spec.fullargspec)
/external/tensorflow/tensorflow/core/protobuf/
Dsaved_object_graph.proto94 FunctionSpec function_spec = 2; field
/external/tensorflow/tensorflow/python/eager/
Ddef_function.py507 def function_spec(self): member in Function
Dfunction.py1278 def function_spec(self): member in Function