Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/eager/
Dfunction.py943 def from_function_and_signature(python_function, input_signature): argument
945 if isinstance(python_function, functools.partial):
946 python_function_to_inspect = python_function.func
947 args_to_prepend = python_function.args or tuple()
948 kwargs_to_include = python_function.keywords or {}
954 python_function_to_inspect = python_function
1217 python_function, argument
1248 if isinstance(python_function, functools.partial):
1249 self._python_function = python_function.func
1251 self._python_function = python_function
[all …]
Ddef_function.py259 python_function, argument
282 self._python_function = python_function
286 python_function, input_signature)
498 def python_function(self): member in Function
Dfunction_test.py1857 side_effecting_function.python_function()
/external/tensorflow/tensorflow/python/saved_model/
Dfunction_deserialization.py154 def __init__(self, python_function, name, function_spec, concrete_functions): argument
157 python_function, name, autograph=False)