Top "Scikits" questions

Scientific Python toolkits

how to Load CSV Data in scikit and using it for Naive Bayes Classification

Trying to load custom data to perform NB Classification in Scikit. Need help in loading the sample data into Scikit …

python csv scikit-learn scikits
Cannot get scikit-learn installed on OS X

I would like to use scikit-learn on an upcoming project and I absolutely cannot install it. I can install other …

python machine-learning pip scikits scikit-learn
Numpy: How to randomly split/select an matrix into n-different matrices

I have a numpy matrix with shape of (4601, 58). I want to split the matrix randomly as per 60%, 20%, 20% split based on …

python random numpy scipy scikits
scikit-learn roc_auc_score() returns accuracy values

I am trying to compute area under the ROC curve using sklearn.metrics.roc_auc_score using the following method: …

python scikit-learn scikits
Simultaneous record audio from mic and play it back with effect in python

My goal is to record my voice through the laptop mic and simultaneously adding an effect to it, in python. …

python audio-recording effects wave scikits
Confusion matrix for Clustering in scikit-learn

I have a set of data with known labels. I want to try clustering and see if I can get …

python scikit-learn cluster-analysis confusion-matrix scikits
Error Installing Scikits.audiolab

I'm trying to install scikits.audiolab with pip. I read this post, however, it looks like that user's problem was …

python macos pip scikits
How to use dummy variable to represent categorical data in python scikit-learn random forest

I'm generating feature vector for random forest classifier of scikit-learn . The feature vector represents the name of 9 protein amino acid …

python scikit-learn scikits dummy-data
How to evaluate cost function for scikit learn LogisticRegression?

After using sklearn.linear_model.LogisticRegression to fit a training data set, I would like to obtain the value of …

python machine-learning scikit-learn logistic-regression scikits