Home
last modified time | relevance | path

Searched refs:fullargspec (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/python/saved_model/
Dfunction_deserialization.py110 typeless_fullargspec = coder.decode_proto(function_spec_proto.fullargspec)
111 fullargspec = tf_inspect.FullArgSpec(
123 return function_lib.FunctionSpec(fullargspec, is_method, args_to_prepend,
221 decorator_argspec=function_spec.fullargspec)
Dfunction_serialization.py29 proto.fullargspec.CopyFrom(coder.encode_structure(function_spec.fullargspec))
/external/tensorflow/tensorflow/python/eager/
Dfunction.py958 fullargspec = tf_inspect.getfullargspec(python_function_to_inspect)
961 return FunctionSpec(fullargspec, is_method, args_to_prepend,
964 def __init__(self, fullargspec, is_method, args_to_prepend, kwargs_to_include, argument
966 self._fullargspec = fullargspec
970 self._default_values = fullargspec.defaults
974 args = fullargspec.args[1:]
976 args = fullargspec.args
982 self.vararg_name = fullargspec.varargs
985 offset = len(args) - len(fullargspec.defaults or [])
988 for index, default in enumerate(fullargspec.defaults or [])
[all …]
Ddef_function.py324 decorator_argspec=self._function_spec.fullargspec),
Dfunction_test.py2254 fullargspec = tf_inspect.getfullargspec(m.call)
2255 self.assertIn('training', fullargspec.args)
/external/tensorflow/tensorflow/core/protobuf/
Dsaved_object_graph.proto141 StructuredValue fullargspec = 1; field
/external/tensorflow/tensorflow/python/tpu/
Dtpu_estimator.py1761 fullargspec = tf_inspect.getfullargspec(host_call[0])
1764 if fullargspec.varargs is None and len(host_call[1]) != len(fn_args):