Home
last modified time | relevance | path

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

123

/external/tensorflow/tensorflow/python/util/
Dtf_inspect_test.py309 argspec = tf_inspect.getfullargspec(test_decorated_function_with_defaults)
325 self.assertEqual(argspec, tf_inspect.getfullargspec(decorator))
340 self.assertEqual(argspec, tf_inspect.getfullargspec(outer_decorator))
364 self.assertEqual(outer_argspec, tf_inspect.getfullargspec(outer_decorator))
381 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_function))
399 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_func))
417 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_func))
438 self.assertEqual(argspec, tf_inspect.getfullargspec(partial_func))
457 self.assertEqual(argspec, tf_inspect.getfullargspec(test_obj))
475 self.assertEqual(argspec, tf_inspect.getfullargspec(InitClass))
[all …]
Dtf_inspect.py67 _getfullargspec = _inspect.getfullargspec # pylint: disable=invalid-name
85 fullargspecs = getfullargspec(target)
252 def getfullargspec(obj): function
292 argspec = getfullargspec(func)
Dfunction_utils.py57 args = tf_inspect.getfullargspec(fn).args
86 return tf_inspect.getfullargspec(fn).varkw is not None
Ddeprecation.py458 arg_spec = tf_inspect.getfullargspec(func)
/external/python/mock/mock/tests/
Dtesthelpers_py3.py20 self.assertEqual(inspect.getfullargspec(mock), inspect.getfullargspec(foo))
/external/tensorflow/tensorflow/python/keras/utils/
Dtf_inspect.py53 _getfullargspec = _inspect.getfullargspec # pylint: disable=invalid-name
71 fullargspecs = getfullargspec(target)
238 def getfullargspec(obj): function
278 argspec = getfullargspec(func)
Dgeneric_utils.py621 arg_spec = tf_inspect.getfullargspec(cls.from_config)
759 arg_spec = tf_inspect.getfullargspec(fn)
/external/tensorflow/tensorflow/python/keras/preprocessing/
Dimage.py187 if 'dtype' in tf_inspect.getfullargspec(image.array_to_img)[0]:
228 if 'dtype' in tf_inspect.getfullargspec(image.img_to_array)[0]:
375 if 'dtype' in tf_inspect.getfullargspec(
444 if 'dtype' in tf_inspect.getfullargspec(
788 if 'dtype' in tf_inspect.getfullargspec(
/external/toolchain-utils/crosperf/
Dbenchmark_unittest.py65 arg_spec = inspect.getfullargspec(Benchmark.__init__)
Dbenchmark_run_unittest.py123 arg_spec = inspect.getfullargspec(benchmark_run.BenchmarkRun.__init__)
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dutils.py175 arg_spec = tf_inspect.getfullargspec(original_call)
215 arg_list = tf_inspect.getfullargspec(call_fn).args
Dsave_impl.py348 arg_spec = tf_inspect.getfullargspec(self.layer_call_method)
460 arg_spec = tf_inspect.getfullargspec(call_fn)
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_dispatch.py113 arg_names = tf_inspect.getfullargspec(original_op)[0]
171 arg_names = tf_inspect.getfullargspec(original_op)[0]
243 op_arg_names = tf_inspect.getfullargspec(original_op)[0]
244 ragged_arg_names = tf_inspect.getfullargspec(ragged_op)[0]
561 argspec = tf_inspect.getfullargspec(op)
/external/tensorflow/tensorflow/python/keras/layers/
Drnn_cell_wrapper_v2.py45 cell_call_spec = tf_inspect.getfullargspec(cell.call)
/external/tensorflow/tensorflow/python/ops/
Dcustom_gradient.py379 grad_argspec = tf_inspect.getfullargspec(grad_fn)
448 grad_argspec = tf_inspect.getfullargspec(grad_fn)
/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.py253 arg_spec = tf_inspect.getfullargspec(cls.from_config)
/external/tensorflow/tensorflow/python/framework/
Dtest_combinations.py323 requested_parameters = tf_inspect.getfullargspec(test_method).args
/external/tensorflow/tensorflow/python/autograph/pyct/
Dparser.py215 arg_spec = tf_inspect.getfullargspec(func)
/external/tensorflow/tensorflow/python/distribute/
Dparameter_server_strategy_v2.py631 arg_spec = tf_inspect.getfullargspec(initial_value)
Dcombinations.py541 argspec = tf_inspect.getfullargspec(test_method)
/external/tensorflow/tensorflow/python/keras/engine/
Dfunctional.py212 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
813 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
1443 method_arg_spec = tf_inspect.getfullargspec(method)
/external/python/cpython3/Doc/library/
Dpydoc.rst105 :func:`inspect.getfullargspec` to extract signature information from
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Doptimizer_v2.py1315 return tf_inspect.getfullargspec(self._resource_apply_dense).args
1320 return tf_inspect.getfullargspec(self._resource_apply_sparse).args
/external/tensorflow/tensorflow/python/keras/legacy_tf_layers/
Dbase.py628 args = tf_inspect.getfullargspec(fn).args

123