Home
last modified time | relevance | path

Searched refs:y_norm (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/
Dsynthetic.py189 y_norm = np.max(np.abs(y))
190 x, y = x / x_norm, y / y_norm
209 y_norm = np.max(np.abs(y))
210 x, y = x / x_norm, y / y_norm
224 y_norm = np.max(np.abs(y))
225 x, y = x / x_norm, y / y_norm
/external/tensorflow/tensorflow/cc/tutorials/
Dexample_trainer.cc75 auto y_norm = Sqrt(root, y2_sum); in CreateGraphDef() local
78 Div(root.WithOpName("y_normalized"), y, y_norm); in CreateGraphDef()
134 const Tensor& y_norm = outputs[1]; in ConcurrentSteps() local
139 x = y_norm; in ConcurrentSteps()
/external/tensorflow/tensorflow/cc/profiler/
Dprofiler_test.cc48 auto y_norm = ops::Sqrt(root, y2_sum); in CreateGraphDef() local
50 auto y_div = ops::Div(root.WithOpName("y_normalized"), y, y_norm); in CreateGraphDef()
/external/tensorflow/tensorflow/cc/framework/
Dcc_ops_test.cc110 auto y_norm = Sqrt(root, y2_sum); in TEST() local
112 auto y_normalized = Div(root.WithOpName("y_normalized"), y, y_norm); in TEST()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_session_test.cc321 Node* y_norm = test::graph::Unary(&graph, "Sqrt", y2_sum); in FindMaxEigen() local
324 Node* y_normalized = test::graph::Binary(&graph, "Div", y, y_norm); in FindMaxEigen()