Home
last modified time | relevance | path

Searched refs:getfullargspec (Results 1 – 25 of 53) sorted by relevance

123

/external/tensorflow/tensorflow/python/util/
Dtf_inspect_test.py299 argspec = tf_inspect.getfullargspec(test_decorated_function_with_defaults)
315 self.assertEqual(argspec, tf_inspect.getfullargspec(decorator))
330 self.assertEqual(argspec, tf_inspect.getfullargspec(outer_decorator))
354 self.assertEqual(outer_argspec, tf_inspect.getfullargspec(outer_decorator))
371 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_function))
389 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_func))
407 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_func))
428 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_func))
447 self.assertEqual(argspec, tf_inspect.getfullargspec(test_obj))
465 self.assertEqual(argspec, tf_inspect.getfullargspec(InitClass))
[all …]
Dtf_inspect.py63 _getfullargspec = _inspect.getfullargspec # pylint: disable=invalid-name
81 fullargspecs = getfullargspec(target)
247 def getfullargspec(obj): function
287 argspec = getfullargspec(func)
Dfunction_utils.py53 args = tf_inspect.getfullargspec(fn).args
82 return tf_inspect.getfullargspec(fn).varkw is not None
Ddeprecation.py480 arg_spec = tf_inspect.getfullargspec(func)
/external/tensorflow/tensorflow/python/keras/utils/
Dtf_inspect.py48 _getfullargspec = _inspect.getfullargspec # pylint: disable=invalid-name
66 fullargspecs = getfullargspec(target)
233 def getfullargspec(obj): function
273 argspec = getfullargspec(func)
Dgeneric_utils.py670 arg_spec = tf_inspect.getfullargspec(cls.from_config)
808 arg_spec = tf_inspect.getfullargspec(fn)
/external/toolchain-utils/crosperf/
Dbenchmark_unittest.py77 arg_spec = inspect.getfullargspec(Benchmark.__init__)
Dbenchmark_run_unittest.py143 arg_spec = inspect.getfullargspec(benchmark_run.BenchmarkRun.__init__)
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dutils.py171 arg_spec = tf_inspect.getfullargspec(original_call)
211 argspec = tf_inspect.getfullargspec(call_fn)
Dsave_impl.py405 arg_spec = tf_inspect.getfullargspec(self.layer_call_method)
512 arg_spec = tf_inspect.getfullargspec(call_fn)
/external/autotest/client/common_lib/cros/
Dxmlrpc_types.py10 from inspect import getfullargspec as get_args
/external/tensorflow/tensorflow/python/keras/layers/
Drnn_cell_wrapper_v2.py41 cell_call_spec = tf_inspect.getfullargspec(cell.call)
/external/tensorflow/tensorflow/python/keras/legacy_tf_layers/
Dvariable_scope_shim.py66 return tf_inspect.getfullargspec(fn).varkw is not None
87 args = tf_inspect.getfullargspec(fn).args
/external/tensorflow/tensorflow/python/ops/
Dcustom_gradient.py471 grad_argspec = tf_inspect.getfullargspec(grad_fn)
541 grad_argspec = tf_inspect.getfullargspec(grad_fn)
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_dispatch.py108 argspec = tf_inspect.getfullargspec(op)
/external/python/cpython3/Misc/NEWS.d/
D3.6.0rc1.rst61 ``inspect.getfullargspec()`` has been reversed. This decision may be
/external/tensorflow/tensorflow/python/feature_column/
Dserialization.py252 arg_spec = tf_inspect.getfullargspec(cls.from_config)
/external/tensorflow/tensorflow/python/eager/
Dfunction_spec.py66 fullargspec = tf_inspect.getfullargspec(python_function)
518 fullargspec = tf_inspect.getfullargspec(python_function)
/external/tensorflow/tensorflow/python/framework/
Dtest_combinations.py317 requested_parameters = tf_inspect.getfullargspec(test_method).args
/external/tensorflow/tensorflow/python/autograph/pyct/
Dparser.py213 arg_spec = tf_inspect.getfullargspec(func)
/external/tensorflow/tensorflow/python/keras/engine/
Dfunctional.py204 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
805 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
1435 method_arg_spec = tf_inspect.getfullargspec(method)
Dsequential.py240 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Doptimizer_v2.py1319 return tf_inspect.getfullargspec(self._resource_apply_dense).args
1324 return tf_inspect.getfullargspec(self._resource_apply_sparse).args
/external/python/cpython3/Doc/library/
Dpydoc.rst105 :func:`inspect.getfullargspec` to extract signature information from
/external/tensorflow/tensorflow/python/distribute/
Dcombinations.py610 argspec = tf_inspect.getfullargspec(test_method)

123