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/core/kernels/
Dcwise_ops_common.h232 const Tensor& y_input = context->input(1); in Compute() local
234 context, x_input.shape() == y_input.shape(), in Compute()
237 ". y shape: ", y_input.shape().DebugString())); in Compute()
243 typename TTypes<T>::ConstFlat y(y_input.flat<T>()); in Compute()
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_v1.py2304 all_inputs, y_input, dict_inputs = self._build_model_with_inputs(x, y)
2312 y_input = y
2318 self._compile_from_inputs(all_inputs, y_input, x, y)