I am new to machine learning in python, therefore forgive my naive question. Is there a library in python for implementing neural networks, such that it gives me the ROC and AUC curves also. I know about libraries in python which implement neural networks but I am searching for a library which also helps me in plotting ROC, DET and AUC curves.
|
closed as not constructive by Will♦ May 9 '12 at 11:50
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
In this case it makes sense to divide your question in 2 topics, since neural networks are hardly directly related to ROC curves. Neural NetworksI think there's nothing better to learn by example, so I'll show you an approach to your problem using a binary classification problem trained by a Feed-Forward neural network, and inspired by this tutorial from pybrain. First thing is to define a dataset. The easiest way to visualize is to use a binary dataset on a 2D plane, with points generated from normal distributions, each of them belonging to one of the 2 classes. This will be linearly separable in this case.
To visualize, it looks something like this:
Now you want to split it into training and test set:
And to create your network:
Now you need to train your network and see what results you get in the end:
Which gives you a very bad boundary at the beginning:
But in the end a pretty good result: |
Thanks a ton for helping. But my problem is...just as random_mixture_model() gives the class and the probability associated with it...how to obtain the same from pybrain...actually given these two values I can plot the ROC curve without using pyroc also. But in order to plot the same pyroc also needs this crucial data which I am searching for. If you know something about this...it would be a great help indeed – user1354510 Apr 28 '12 at 4:37 |
|
@user1354510 I just updated my post to give you more details, look at the last paragraph where I explain how to get the probabilities with pybrain. – Charles Menguy Apr 28 '12 at 6:23 |
|
Sure. First, check out this Good open-source neural network Python library? This is my general idea, I'm sketching out how I might approach this, none of this is tested From http://pybrain.org/docs/tutorial/netmodcon.html#feed-forward-networks
We build a neural net, train it (not shown) and get the output. You have a test set, right? You use the test set to generate the data for the ROC curve. For a single output neural net, you want to create a threshold for the output values to translate them to yes or no responses that get the best degree of specificity/sensitivity for your task This is a good tutorial http://webhome.cs.uvic.ca/~mgbarsky/DM_LABS/LAB_5/Lab5_ROC_weka.pdf Then you just plot them. Or you can try to find a library that does it for you I saw this http://pypi.python.org/pypi/yard The point is, that generating at ROC curve is not specific to neural nets, so you may not find a library that does it for you. I've provided the above to show it's fairly simple to roll your own * More detail * Your neural network is going to have an output that you will have to translate in to a classification (likely yes/no). To calculate the ROC curve, you're going to take a few thresholds for yes/no (in other words, .75> yes, <.75 no). From this threshold, you translate the output of your neural net into classifications. By comparing those classifications to the true classifications, you get a false positive and true positive rate. You are then plotting the false positive rate and true positive rate when you tweak that threshold. |
||||
|
|




