Home
last modified time | relevance | path

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

12

/external/tensorflow/tensorflow/python/keras/preprocessing/
Dimage.py70 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/
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.py53 _getfullargspec = _inspect.getfullargspec # pylint: disable=invalid-name
71 fullargspecs = getfullargspec(target)
234 def getfullargspec(obj): function
270 argspec = getfullargspec(func)
Dfunction_utils.py57 args = tf_inspect.getfullargspec(fn).args
83 return tf_inspect.getfullargspec(fn).varkw is not None
Ddeprecation.py430 arg_spec = tf_inspect.getfullargspec(func)
Ddeprecation_test.py80 tf_inspect.getfullargspec(MyClass.__init__),
81 tf_inspect.getfullargspec(deprecated_cls.__init__))
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_dispatch.py106 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/
Dcustom_gradient.py196 grad_argspec = tf_inspect.getfullargspec(grad_fn)
264 grad_argspec = tf_inspect.getfullargspec(grad_fn)
/external/tensorflow/tensorflow/examples/saved_model/integration_tests/
Dutil.py76 self._func_fullargspec = tf_inspect.getfullargspec(func.__call__)
/external/tensorflow/tensorflow/python/keras/applications/
D__init__.py36 if 'engine' in tf_inspect.getfullargspec(
/external/tensorflow/tensorflow/python/keras/utils/
Dgeneric_utils.py184 arg_spec = tf_inspect.getfullargspec(cls.from_config)
303 arg_spec = tf_inspect.getfullargspec(fn)
/external/python/cpython3/Lib/unittest/test/testmock/
Dtesthelpers.py914 self.assertEqual(inspect.getfullargspec(mock), inspect.getfullargspec(myfunc))
928 self.assertEqual(inspect.getfullargspec(mock), inspect.getfullargspec(foo))
/external/python/cpython3/Misc/NEWS.d/
D3.6.0rc1.rst61 ``inspect.getfullargspec()`` has been reversed. This decision may be
/external/tensorflow/tensorflow/python/keras/engine/
Dnetwork.py240 '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)
Dsequential.py202 self._layer_call_argspecs[layer] = tf_inspect.getfullargspec(layer.call)
Dbase_layer.py195 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/
Dapi_test.py182 list(tf_inspect.getfullargspec(tc.called_member)),
183 list(tf_inspect.getfullargspec(tc.called_member_converted)))
/external/tensorflow/tensorflow/core/protobuf/
Dsaved_object_graph.proto140 // Full arg spec from inspect.getfullargspec().
/external/tensorflow/tensorflow/contrib/distribute/python/
Dcombinations.py186 requested_arguments = tf_inspect.getfullargspec(test_method).args
/external/tensorflow/tensorflow/python/autograph/pyct/
Dast_util.py339 arg_spec = tf_inspect.getfullargspec(self.fn)
/external/python/cpython3/Doc/library/
Dpydoc.rst105 :func:`inspect.getfullargspec` to extract signature information from
Dinspect.rst880 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/
Dparser.py665 argspec = tf_inspect.getfullargspec(func.func)
697 return tf_inspect.getfullargspec(func)
/external/python/cpython3/Lib/test/
Dtest_inspect.py734 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/
Dbackprop.py273 args = tf_inspect.getfullargspec(f).args

12