Home
last modified time | relevance | path

Searched refs:y_input (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dlistdiff_op.cc73 std::vector<int64> x_input, y_input; in ListDiff() local
75 TF_RETURN_IF_ERROR(context->ConstantInputAsIntVector(1, &y_input)); in ListDiff()
78 y_input_set.reserve(y_input.size()); in ListDiff()
79 for (auto y : y_input) { in ListDiff()
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining.py2385 x_input, y_input, _ = training_utils.extract_tensors_from_dataset(x)
2388 y_input = y
2420 y_input = y
2423 if y_input is not None:
2431 if training_utils.has_tensors(y_input):
2432 y_input = training_utils.cast_if_floating_dtype(y_input)
2433 if isinstance(y_input, (list, tuple)):
2435 tensor_util.is_tensor(v) for v in y_input):
2439 all_inputs += list(y_input)
2440 elif isinstance(y_input, dict):
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dcwise_ops_common.h171 const Tensor& y_input = context->input(1); in Compute() local
173 context, x_input.shape() == y_input.shape(), in Compute()
176 ". y shape: ", y_input.shape().DebugString())); in Compute()
182 typename TTypes<T>::ConstFlat y(y_input.flat<T>()); in Compute()