Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/eager/
Ddef_function.py485 python_function, argument
512 self._python_function = python_function
514 python_function,
727 def _clone(self, python_function): argument
730 python_function=(self._python_function
731 if python_function is None else python_function),
1046 def python_function(self): member in Function
Dfunction.py2338 def from_function_and_signature(python_function, argument
2356 fullargspec = tf_inspect.getfullargspec(python_function)
2361 _, unwrapped = tf_decorator.unwrap(python_function)
2431 is_method = tf_inspect.isanytargetmethod(python_function)
2436 python_function) and hasattr(
2437 python_function, "__class__") and hasattr(
2438 python_function.__class__, "__call__"):
2442 while isinstance(python_function, functools.partial):
2443 python_function = python_function.func
2444 name = getattr(python_function, "__name__", "f")
[all …]
Ddef_function_test.py696 cloned = func._clone(python_function=cloned_py_function)
Dfunction_test.py2518 side_effecting_function.python_function()
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dsave_impl.py535 def __init__(self, call_collection, python_function, *args, **kwargs): argument
538 python_function = layer_call_wrapper(call_collection, python_function)
539 super(LayerCall, self).__init__(python_function, *args, **kwargs)
638 return layer.call.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.py72 python_function=functools.partial(call_for_each_replica, strategy,
73 fn.python_function))
/external/tensorflow/tensorflow/python/saved_model/
Dfunction_deserialization.py190 def __init__(self, python_function, name, function_spec, concrete_functions): argument
193 python_function, name, autograph=False,