Home
last modified time | relevance | path

Searched refs:isotonic_regression (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
Dnn_test.py1927 y, segments = nn_ops.isotonic_regression(x, decreasing=False)
1931 y, segments = nn_ops.isotonic_regression(x, decreasing=True)
1941 y, segments = nn_ops.isotonic_regression(-x, decreasing=True)
1945 y, segments = nn_ops.isotonic_regression(-x, decreasing=False)
1958 y, segments = nn_ops.isotonic_regression(x, decreasing=True, axis=0)
1972 y, _ = nn_ops.isotonic_regression(x) # No gradient wrt segments.
1987 y, _ = nn_ops.isotonic_regression(x) # Segments have no gradient.
2000 y, segments = nn_ops.isotonic_regression(x)
Dnn_ops.py6499 def isotonic_regression(inputs, decreasing=True, axis=-1): function
6562 gen_nn_ops.isotonic_regression, output_dtype=output_dtype, name=name)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.nn.pbtxt192 name: "isotonic_regression"
/external/tensorflow/
DRELEASE.md7301 * Added an isotonic regression solver (tf.nn.isotonic_regression).