tensorflow 的 metrics(contrib) 仅显示有限的属性

metrics(contrib) of tensorflow shows only limited attributes

我想找到神经网络模型的 auc 值,使用 tf.contrib.metrics.streaming_auc() 在张量流中。 但是tf.contrib.metrics。除了 auc_histogram() 没有其他选择。 tensorflow 中有很多选项可用,但我没有可用的选项。有人可以帮我获取这些属性吗?

您应该将 TensorFlow 更新到 0.9。

在 0.8 版本中,tf.contrib.metric 只有一项功能 auc_using_histogram() 可用(参见 github directory)。

而在 0.9 版本中,提供了更多功能 (github)。