Searched refs:getfullargspec (Results 1 – 25 of 42) sorted by relevance
12
/external/tensorflow/tensorflow/python/keras/preprocessing/ |
D | image.py | 70 if 'dtype' in tf_inspect.getfullargspec(image.array_to_img)[0]: 97 if 'dtype' in tf_inspect.getfullargspec(image.img_to_array)[0]: 206 if 'dtype' in tf_inspect.getfullargspec( 275 if 'dtype' in tf_inspect.getfullargspec( 492 if 'dtype' in tf_inspect.getfullargspec(
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_inspect_test.py | 309 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 …]
|
D | tf_inspect.py | 53 _getfullargspec = _inspect.getfullargspec # pylint: disable=invalid-name 71 fullargspecs = getfullargspec(target) 234 def getfullargspec(obj): function 270 argspec = getfullargspec(func)
|
D | function_utils.py | 57 args = tf_inspect.getfullargspec(fn).args 83 return tf_inspect.getfullargspec(fn).varkw is not None
|
D | deprecation.py | 430 arg_spec = tf_inspect.getfullargspec(func)
|
D | deprecation_test.py | 80 tf_inspect.getfullargspec(MyClass.__init__), 81 tf_inspect.getfullargspec(deprecated_cls.__init__))
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_dispatch.py | 106 arg_names = tf_inspect.getfullargspec(original_op)[0] 160 arg_names = tf_inspect.getfullargspec(original_op)[0] 229 op_arg_names = tf_inspect.getfullargspec(original_op)[0] 230 ragged_arg_names = tf_inspect.getfullargspec(ragged_op)[0] 494 argspec = tf_inspect.getfullargspec(op)
|
/external/tensorflow/tensorflow/python/ops/ |
D | custom_gradient.py | 196 grad_argspec = tf_inspect.getfullargspec(grad_fn) 264 grad_argspec = tf_inspect.getfullargspec(grad_fn)
|
/external/tensorflow/tensorflow/examples/saved_model/integration_tests/ |
D | util.py | 76 self._func_fullargspec = tf_inspect.getfullargspec(func.__call__)
|
/external/tensorflow/tensorflow/python/keras/applications/ |
D | __init__.py | 36 if 'engine' in tf_inspect.getfullargspec(
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | generic_utils.py | 184 arg_spec = tf_inspect.getfullargspec(cls.from_config) 303 arg_spec = tf_inspect.getfullargspec(fn)
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testhelpers.py | 914 self.assertEqual(inspect.getfullargspec(mock), inspect.getfullargspec(myfunc)) 928 self.assertEqual(inspect.getfullargspec(mock), inspect.getfullargspec(foo))
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0rc1.rst | 61 ``inspect.getfullargspec()`` has been reversed. This decision may be
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | network.py | 240 'mask' in tf_inspect.getfullargspec(self.call).args or 291 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call) 324 call_argspec = tf_inspect.getfullargspec(self.call) 810 call_signature = tf_inspect.getfullargspec(self.call)
|
D | sequential.py | 202 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
|
D | base_layer.py | 195 call_argspec = tf_inspect.getfullargspec(self.call) 595 tf_inspect.getfullargspec(self.call), args, kwargs) and 1564 call_arg_spec = tf_inspect.getfullargspec(self.call)
|
/external/tensorflow/tensorflow/python/autograph/impl/ |
D | api_test.py | 182 list(tf_inspect.getfullargspec(tc.called_member)), 183 list(tf_inspect.getfullargspec(tc.called_member_converted)))
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | saved_object_graph.proto | 140 // Full arg spec from inspect.getfullargspec().
|
/external/tensorflow/tensorflow/contrib/distribute/python/ |
D | combinations.py | 186 requested_arguments = tf_inspect.getfullargspec(test_method).args
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | ast_util.py | 339 arg_spec = tf_inspect.getfullargspec(self.fn)
|
/external/python/cpython3/Doc/library/ |
D | pydoc.rst | 105 :func:`inspect.getfullargspec` to extract signature information from
|
D | inspect.rst | 880 Use :func:`getfullargspec` for an updated API that is usually a drop-in 889 .. function:: getfullargspec(func) 952 :func:`getfullargspec`. 963 >>> from inspect import formatargspec, getfullargspec 967 >>> formatargspec(*getfullargspec(f))
|
/external/tensorflow/tensorflow/tools/docs/ |
D | parser.py | 665 argspec = tf_inspect.getfullargspec(func.func) 697 return tf_inspect.getfullargspec(func)
|
/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 734 inspect.getfullargspec(routine) 828 spec = inspect.getfullargspec(test) 832 spec = inspect.getfullargspec(test) 857 spec = inspect.getfullargspec(builtin) 867 inspect.getfullargspec(builtin) 871 signature = inspect.getfullargspec(fn) 876 signature = inspect.getfullargspec(unsorted_keyword_only_parameters_fn)
|
/external/tensorflow/tensorflow/python/eager/ |
D | backprop.py | 273 args = tf_inspect.getfullargspec(f).args
|
12