Searched defs:_Inputs (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
H A Dnn_xent_test.py46 def _Inputs(self, x=None, y=None, dtype=dtypes.float64, sizes=None): member in class:SigmoidCrossEntropyWithLogitsTest
58 logits, targets, _ = self._Inputs()
67 logits, targets, losses = self._Inputs(dtype=dtype)
78 logits, targets, losses = self._Inputs(dtype=dtype, sizes=[2, 2, 2])
88 logits, targets, _ = self._Inputs(sizes=sizes)
122 def _Inputs(self, x=None, y=None, q=3.0, dtype=dtypes.float64, sizes=None): member in class:WeightedCrossEntropyTest
134 logits, targets, pos_weight, _ = self._Inputs()
142 logits, targets, pos_weight, losses = self._Inputs(dtype=dtypes.float32)
152 logits, targets, pos_weight, losses = self._Inputs(
163 logits, targets, pos_weight, _ = self._Inputs(size
[all...]
/external/tensorflow/tensorflow/contrib/tpu/python/tpu/
H A Dtpu_estimator.py634 inputs = _Inputs.from_input_fn(input_fn())
671 inputs = _Inputs.from_input_fn(input_fn())
888 return _Inputs(unflattened_features, unflattened_label, signals=signals)
2179 class _Inputs(object): class in inherits:object
2201 """Returns an `_Inputs` instance according to `input_fn` return value."""
2204 return _Inputs(dataset=dataset)
2206 features, labels = _Inputs._parse_inputs(return_values)
2207 return _Inputs(features, labels)
2236 return _Inputs._parse_inputs(self._iterator.get_next())
2249 class _InputsWithStoppingSignals(_Inputs)
[all...]

Completed in 135 milliseconds