Home
last modified time | relevance | path

Searched refs:python_function (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.__internal__.function.-function.pbtxt16 name: "python_function"
21 …argspec: "args=[\'self\', \'python_function\', \'name\', \'input_signature\', \'autograph\', \'jit…
/external/tensorflow/tensorflow/python/eager/
Ddef_function.py551 python_function, argument
578 self._python_function = python_function
580 python_function,
790 def _clone(self, python_function): argument
793 python_function=(self._python_function
794 if python_function is None else python_function),
1074 def python_function(self): member in Function
Dfunction.py2358 def from_function_and_signature(python_function, argument
2376 fullargspec = tf_inspect.getfullargspec(python_function)
2378 is_method = tf_inspect.isanytargetmethod(python_function)
2384 _, unwrapped = tf_decorator.unwrap(python_function)
2446 while isinstance(python_function, functools.partial):
2447 python_function = python_function.func
2448 name = getattr(python_function, "__name__", "f")
2943 python_function, argument
2982 self._python_function = python_function
2985 python_function,
[all …]
Ddef_function_test.py897 cloned = func._clone(python_function=cloned_py_function)
Dfunction_test.py2596 side_effecting_function.python_function()
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dgenerated_code.md54 `python_function` attribute:
61 converted_f = tf.autograph.to_graph(f.python_function)
/external/tensorflow/tensorflow/python/distribute/
Dmirrored_run.py83 python_function=functools.partial(call_for_each_replica, strategy,
84 fn.python_function))
/external/tensorflow/tensorflow/python/saved_model/
Dfunction_deserialization.py194 def __init__(self, python_function, name, function_spec, concrete_functions): argument
197 python_function, name, autograph=False,
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dsave_impl.py733 return layer.call.python_function