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.py1837 y, segments = nn_ops.isotonic_regression(x, decreasing=False)
1841 y, segments = nn_ops.isotonic_regression(x, decreasing=True)
1850 y, segments = nn_ops.isotonic_regression(-x, decreasing=True)
1854 y, segments = nn_ops.isotonic_regression(-x, decreasing=False)
1867 y, segments = nn_ops.isotonic_regression(x, decreasing=True, axis=0)
1881 y, _ = nn_ops.isotonic_regression(x) # No gradient wrt segments.
1896 y, _ = nn_ops.isotonic_regression(x) # Segments have no gradient.
1909 y, segments = nn_ops.isotonic_regression(x)
Dnn_ops.py5798 def isotonic_regression(inputs, decreasing=True, axis=-1): function
5861 gen_nn_ops.isotonic_regression, output_dtype=output_dtype, name=name)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.nn.pbtxt180 name: "isotonic_regression"
/external/tensorflow/
DRELEASE.md2442 * Added an isotonic regression solver (tf.nn.isotonic_regression).