Searched refs:isotonic_regression (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | nn_test.py | 1837 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)
|
D | nn_ops.py | 5798 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/ |
D | tensorflow.nn.pbtxt | 180 name: "isotonic_regression"
|
/external/tensorflow/ |
D | RELEASE.md | 2442 * Added an isotonic regression solver (tf.nn.isotonic_regression).
|