Searched defs:_fn (Results 1 - 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/contrib/framework/python/framework/
H A Dexperimental_test.py33 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/bayesflow/python/ops/
H A Dvariable_utils_impl.py146 def _fn(*args): function in function:externalize_variables_as_args
157 return _fn, ancestor_variables
H A Dlayers_util.py88 def _fn(dtype, shape, name, trainable, add_variable_fn): function in function:default_loc_scale_fn
111 return _fn
173 def _fn(dtype, shape, name, trainable, add_variable_fn): function in function:default_mean_field_normal_fn
183 return _fn
H A Dhmc_impl.py481 def _fn(*args): function in function:sample_annealed_importance_chain.make_convex_combined_log_prob_fn
488 return _fn
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
H A Dautoregressive_test.py46 def _fn(samples): function in function:AutogressiveTest._normal_fn
51 return _fn
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
H A Dreal_nvp.py262 def _fn(x, output_units): function in function:real_nvp_default_template
282 "real_nvp_default_template", _fn)
H A Dmasked_autoregressive.py463 def _fn(x): function in function:masked_autoregressive_default_template
499 "masked_autoregressive_default_template", _fn)
/external/tensorflow/tensorflow/contrib/factorization/python/ops/
H A Dgmm_test.py43 def _fn(): function in function:GMMTest.input_fn
52 return _fn
202 def _fn(): function in function:GMMTestQueues.input_fn
210 return _fn
H A Dwals_test.py115 _fn: A callable. Calling _fn returns a features dict.
139 def _fn(): function in function:WALSMatrixFactorizationTest.input_fn
178 return _fn, nz_row_ids, nz_col_ids
H A Dkmeans_test.py84 def _fn(): function in function:KMeansTestBase.input_fn
115 return _fn
558 def _fn(): function in function:KMeansTestQueues.input_fn
566 return _fn
/external/tensorflow/tensorflow/contrib/learn/python/learn/
H A Dmetric_spec_test.py67 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/python/ops/distributions/
H A Dutil.py1332 def _fn(*args, **kwargs): function in function:AppendDocstring.__call__
1334 if _fn.__doc__ is None:
1335 _fn.__doc__ = self._additional_note
1337 _fn.__doc__ += "\n%s" % self._additional_note
1338 return _fn
/external/tensorflow/tensorflow/python/util/
H A Ddeprecation_test.py85 def _fn(): function in function:DeprecationTest.test_deprecated_once
88 _fn()
90 _fn()
99 def _fn(): function in function:DeprecationTest.test_silence
102 _fn()
106 _fn()
109 _fn()
135 def _fn(arg0, arg1): function in function:DeprecationTest.test_no_date
158 "\n Sum of args." % instructions, _fn.__doc__)
161 self.assertEqual(3, _fn(
175 def _fn(arg0, arg1): function in function:DeprecationTest.test_static_fn_with_doc
215 def _fn(arg0, arg1): function in function:DeprecationTest.test_static_fn_with_one_line_doc
240 def _fn(arg0, arg1): function in function:DeprecationTest.test_static_fn_no_doc
270 def _fn(self, arg0, arg1): member in class:DeprecationTest.test_instance_fn_with_doc._Object
315 def _fn(self, arg0, arg1): member in class:DeprecationTest.test_instance_fn_with_one_line_doc._Object
345 def _fn(self, arg0, arg1): member in class:DeprecationTest.test_instance_fn_no_doc._Object
473 def _fn(arg0, arg1, deprecated=None): function in function:DeprecatedArgsTest.test_deprecated_missing_args
486 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgsTest.test_static_fn_with_doc
532 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgsTest.test_static_fn_with_one_line_doc
561 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgsTest.test_static_fn_no_doc
590 def _fn(arg0, arg1, *deprecated): function in function:DeprecatedArgsTest.test_varargs
610 def _fn(arg0, arg1, **deprecated): function in function:DeprecatedArgsTest.test_kwargs
630 def _fn(arg0, d1=None, arg1=2, d2=None): function in function:DeprecatedArgsTest.test_positional_and_named
656 def _fn(arg0, d1=None, arg1=2, d2=None): function in function:DeprecatedArgsTest.test_positional_and_named_with_ok_vals
687 def _fn(arg=0): # pylint: disable=unused-argument function in function:DeprecatedArgsTest.test_deprecated_args_once
704 def _fn(arg0=0, arg1=0): # pylint: disable=unused-argument function in function:DeprecatedArgsTest.test_deprecated_multiple_args_once_each
748 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgValuesTest.test_static_fn_with_doc
799 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgValuesTest.test_static_fn_with_one_line_doc
833 def _fn(arg0, arg1, deprecated=True): function in function:DeprecatedArgValuesTest.test_static_fn_no_doc
867 def _fn(deprecated): # pylint: disable=unused-argument function in function:DeprecatedArgValuesTest.test_deprecated_arg_values_once
884 def _fn(arg0, arg1): # pylint: disable=unused-argument function in function:DeprecatedArgValuesTest.test_deprecated_multiple_arg_values_once_each
[all...]
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
H A Dkmeans_test.py86 def _fn(): function in function:KMeansTestBase.input_fn
117 return _fn
566 def _fn(): function in function:KMeansTestQueues.input_fn
574 return _fn
/external/deqp/external/openglcts/modules/gles31/
H A Des31cExplicitUniformLocationTest.cpp776 void push_back(const SubroutineFunction& _fn) argument
778 fn.push_back(_fn);
/external/tensorflow/tensorflow/python/estimator/
H A Dtraining_test.py1745 def _fn(): function in function:TrainAndEvaluateRunTest._test_run_task_and_executor.task_fn
1748 return _fn

Completed in 1030 milliseconds