Ntlk& Python,绘制ROC曲线
我正在使用 nltk 和 Python,我想绘制分类器(朴素贝叶斯)的 ROC 曲线。是否有任何函数可以绘制它,或者我应该跟踪真阳性率和假阳性率?
如果有人能指出我已经在做的一些代码,那就太好了......
谢谢。
I am using nltk with Python and I would like to plot the ROC curve of my classifier (Naive Bayes). Is there any function for plotting it or should I have to track the True Positive rate and False Positive rate ?
It would be great if someone would point me to some code already doing it...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PyROC 看起来很简单:教程,源代码
这就是它与 NLTK 的配合方式朴素贝叶斯分类器:
编辑:
.prob(1)
的原因PyROC looks simple enough: tutorial, source code
This is how it would work with the NLTK naive bayes classifier:
Edits:
.prob(1)