HomeSort by relevance Sort by last modified time
    Searched defs:_fn (Results 1 - 13 of 13) sorted by null

  /external/tensorflow/tensorflow/contrib/framework/python/framework/
experimental_test.py 33 def _fn(arg0, arg1): function in function:ExperimentalTest.test_warning
46 self.assertEqual("_fn", _fn.__name__)
58 "\n Sum of args.", _fn.__doc__)
61 self.assertEqual(3, _fn(1, 2))
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
autoregressive_test.py 46 def _fn(samples): function in function:AutogressiveTest._normal_fn
51 return _fn
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
real_nvp.py 296 def _fn(x, output_units): function in function:real_nvp_default_template
316 "real_nvp_default_template", _fn)
masked_autoregressive.py 524 def _fn(x): function in function:masked_autoregressive_default_template
560 return template_ops.make_template(name, _fn)
  /external/tensorflow/tensorflow/python/keras/utils/
tf_utils_test.py 103 def _fn(*fargs, **fkwargs): function in function:TestIsSymbolicTensor.test_enables_nontensor_plumbing.PlumbingLayer.__init__
109 super(PlumbingLayer, self).__init__(_fn, **kwargs)
  /external/tensorflow/tensorflow/contrib/factorization/python/ops/
gmm_test.py 43 def _fn(): function in function:GMMTest.input_fn
52 return _fn
202 def _fn(): function in function:GMMTestQueues.input_fn
210 return _fn
wals_test.py 115 _fn: A callable. Calling _fn returns a features dict.
141 def _fn(): function in function:WALSMatrixFactorizationTest.input_fn
180 return _fn, nz_row_ids, nz_col_ids
kmeans_test.py 85 def _fn(): function in function:KMeansTestBase.input_fn
116 return _fn
596 def _fn(): function in function:KMeansTestQueues.input_fn
604 return _fn
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
metric_spec_test.py 67 def _fn(): function in function:MetricSpecTest.test_no_args
70 spec = MetricSpec(metric_fn=_fn)
80 def _fn(**kwargs): function in function:MetricSpecTest.test_kwargs
84 spec = MetricSpec(metric_fn=_fn)
93 def _fn(labels): function in function:MetricSpecTest.test_named_labels_no_predictions
97 spec = MetricSpec(metric_fn=_fn)
106 def _fn(labels, **kwargs): function in function:MetricSpecTest.test_named_labels_no_predictions_with_kwargs
111 spec = MetricSpec(metric_fn=_fn)
120 def _fn(labels, predictions_by_another_name): function in function:MetricSpecTest.test_no_named_predictions_named_labels_first_arg
125 spec = MetricSpec(metric_fn=_fn)
135 def _fn(predictions_by_another_name, labels): function in function:MetricSpecTest.test_no_named_predictions_named_labels_second_arg
150 def _fn(predictions): function in function:MetricSpecTest.test_no_named_labels
164 def _fn(a): function in function:MetricSpecTest.test_no_named_labels_or_predictions_1arg
178 def _fn(a, b): function in function:MetricSpecTest.test_no_named_labels_or_predictions_2args
222 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_predictions_dict_no_key
238 def _fn(labels, predictions, weights=None): function in function:MetricSpecTest.test_labels_dict_no_key
254 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_prediction
270 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_label
286 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_predictions_with_key
302 def _fn(predictions, labels, weights=None): function in function:MetricSpecTest.test_single_labels_with_key
417 def _fn(predictions, prediction, labels): function in function:MetricSpecTest.test_multiple_prediction_args
425 def _fn(predictions, labels, weights=None, weight=None): function in function:MetricSpecTest.test_multiple_weight_args
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
kmeans_test.py 85 def _fn(): function in function:KMeansTestBase.input_fn
116 return _fn
565 def _fn(): function in function:KMeansTestQueues.input_fn
573 return _fn
  /external/tensorflow/tensorflow/python/ops/distributions/
util.py 1435 def _fn(*args, **kwargs): function in function:AppendDocstring.__call__
    [all...]
  /external/tensorflow/tensorflow/python/util/
deprecation_test.py 92 def _fn(): function in function:DeprecationTest.test_deprecated_once
95 _fn()
97 _fn()
106 def _fn(): function in function:DeprecationTest.test_silence
109 _fn()
113 _fn()
116 _fn()
142 def _fn(arg0, arg1): function in function:DeprecationTest.test_no_date
166 "\n Sum of args." % instructions, _fn.__doc__)
169 self.assertEqual(3, _fn(1, 2)
184 def _fn(arg0, arg1): function in function:DeprecationTest.test_static_fn_with_doc
225 def _fn(arg0, arg1): function in function:DeprecationTest.test_static_fn_with_one_line_doc
251 def _fn(arg0, arg1): function in function:DeprecationTest.test_static_fn_no_doc
281 def _fn(self, arg0, arg1): member in class:DeprecationTest.test_instance_fn_with_doc._Object
326 def _fn(self, arg0, arg1): member in class:DeprecationTest.test_instance_fn_with_one_line_doc._Object
356 def _fn(self, arg0, arg1): member in class:DeprecationTest.test_instance_fn_no_doc._Object
487 def _fn(arg0, arg1, deprecated=None): function in function:DeprecatedArgsTest.test_deprecated_missing_args
501 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgsTest.test_static_fn_with_doc
549 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgsTest.test_static_fn_with_one_line_doc
580 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgsTest.test_static_fn_no_doc
611 def _fn(arg0, arg1, *deprecated): function in function:DeprecatedArgsTest.test_varargs
632 def _fn(arg0, arg1, **deprecated): function in function:DeprecatedArgsTest.test_kwargs
653 def _fn(arg0, d1=None, arg1=2, d2=None): function in function:DeprecatedArgsTest.test_positional_and_named
680 def _fn(arg0, d1=None, arg1=2, d2=None): function in function:DeprecatedArgsTest.test_positional_and_named_with_ok_vals
712 def _fn(arg=0): # pylint: disable=unused-argument function in function:DeprecatedArgsTest.test_deprecated_args_once
730 def _fn(arg0=0, arg1=0): # pylint: disable=unused-argument function in function:DeprecatedArgsTest.test_deprecated_multiple_args_once_each
775 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgValuesTest.test_static_fn_with_doc
828 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgValuesTest.test_static_fn_with_one_line_doc
864 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgValuesTest.test_static_fn_no_doc
899 def _fn(deprecated): # pylint: disable=unused-argument function in function:DeprecatedArgValuesTest.test_deprecated_arg_values_once
916 def _fn(arg0, arg1): # pylint: disable=unused-argument function in function:DeprecatedArgValuesTest.test_deprecated_multiple_arg_values_once_each
    [all...]
  /external/python/setuptools/pkg_resources/
__init__.py 1462 def _fn(self, base, resource_name): member in class:NullProvider
    [all...]

Completed in 500 milliseconds