Searched refs:fullargspec (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/python/saved_model/ |
D | function_deserialization.py | 110 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)
|
D | function_serialization.py | 29 proto.fullargspec.CopyFrom(coder.encode_structure(function_spec.fullargspec))
|
/external/tensorflow/tensorflow/python/eager/ |
D | function.py | 958 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 …]
|
D | def_function.py | 324 decorator_argspec=self._function_spec.fullargspec),
|
D | function_test.py | 2254 fullargspec = tf_inspect.getfullargspec(m.call) 2255 self.assertIn('training', fullargspec.args)
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | saved_object_graph.proto | 141 StructuredValue fullargspec = 1; field
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tpu_estimator.py | 1761 fullargspec = tf_inspect.getfullargspec(host_call[0]) 1764 if fullargspec.varargs is None and len(host_call[1]) != len(fn_args):
|