Georg Heiler
Georg Heiler

Reputation: 17676

Python classifier evaluation plots

For R, I just found a great package to quickly generate some classifier evaluation plots https://github.com/ambiata/classifierplots/blob/master/README.md

Is there something like this for python / sklearn?

Upvotes: 0

Views: 142

Answers (1)

Darius
Darius

Reputation: 12052

You can give scikit-plot or yellowbrick a go.

In addition the developers of scikit-learn plan to integrate some basic plotting techniques [1][2].

Upvotes: 4

Related Questions