Search code examples
tensorflowrocauc

metrics(contrib) of tensorflow shows only limited attributes


I wanted to find auc value for the neural net model using tf.contrib.metrics.streaming_auc() in tensorflow. But tf.contrib.metrics. has no other option except auc_histogram(). There are lot of options available in tensorflow but nothing is availble for me. Could someone help me in fetching those attributes.


Solution

  • You should update TensorFlow to 0.9.

    In version 0.8, tf.contrib.metric only has one function auc_using_histogram() available (see the github directory).

    Whereas in version 0.9, more function are available (github).