Scientific Python Toolkits
32
votes
1answer
533 views
Fitting a scikits.learn.hmm.GaussianHMM to variable length training sequences
I'd like to fit a scikits.learn.hmm.GaussianHMM to training sequences of different length. The fit method, however, prevents using sequences of different length by doing
obs = np.asanyarray(obs)
...
12
votes
1answer
611 views
View onto a numpy array?
I have a 2D numpy array. Is there a way to create a view onto it that would include the first k rows and all columns?
The point is to avoid copying the underlying data (the array is so large that ...
6
votes
1answer
417 views
How to aggregate timeseries in Python?
I have two different timeseries with partially overlapping timestamps:
import scikits.timeseries as ts
from datetime import datetime
a = ts.time_series([1,2,3], dates=[datetime(2010,10,20), ...
5
votes
3answers
152 views
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 number of rows
This is for Machine Learning task I need
Is there a ...
4
votes
1answer
185 views
How to extract info from scikits.learn classifier to then use in C code
I have trained a bunch of RBF SVMs using scikits.learn in Python and then Pickled the results. These are for image processing tasks and one thing I want to do for testing is run each classifier on ...
3
votes
3answers
106 views
fastest SVM implementation usable in python
I'm building some predictive models in python and have been using scikits learn's SVM implementation. It's been really great, easy to use, and relatively fast. Unfortunately, I'm beginning to become ...
3
votes
2answers
731 views
Is it possible to specify your own distance function using Scikits.Learn K-Means Clustering?
Is it possible to specify your own distance function using Scikits.Learn K-Means Clustering? If so, how and where?
2
votes
3answers
68 views
SVM implmentation, scikits learn reducing runtime, fastest svm
i'm working with scikits learn on building some predictive models with svms. I have a dataset with around 5000 examples and about 700 features. i'm 5 fold cross validating with a 18x17 grid search on ...
2
votes
1answer
87 views
Sparse implementations of distance computations in python / scikit-learn
I have a large (100K by 30K) and (very) sparse dataset in svmlight format which I load as follows:
import numpy as np
from scipy.cluster.vq import kmeans2
from scipy.spatial.distance import pdist, ...
2
votes
1answer
80 views
F1 smaller than both precision and recall in Scikit-learn
I am doing multi-class classification, with unbalanced categories.
I noticed f1 is always smaller than the direct harmonic mean of precision and recall, and in some cases, f1 is even smaller than ...
2
votes
1answer
135 views
10*10 fold cross validation in scikit-learn?
Is class sklearn.cross_validation.ShuffleSplit(n, n_iterations=10, test_fraction=0.10000000000000001, indices=True, random_state=None) the right way for 10*10fold CV in scikit-learn? (By changing the ...
2
votes
1answer
356 views
Python module audiolab returns error when function is called
I need to install the Python module audiolab for a research project, and while I have managed to install it and get the module to import in the Python shell, it returns an error in calling one of the ...
2
votes
1answer
113 views
Is it possible to define a semi-annual frequency for a python scikits.timeseries time_series object?
According to the scikits.timeseries module the following frequencies are available when defining a time_series object:
Annual Frequencies, Quarterly frequencies, Monthly, Weekly, Daily etc. A full ...
1
vote
1answer
24 views
Missing values in scikits machine learning
Is it possible to have missing values in scikit-learn ? How should they be represented? I couldn't find any documentation about that.
1
vote
1answer
29 views
Random forests with scikit learn .9 or below
I am having some weird problems installing Scikit learn on my mac and my linux box. Only scikit learn .9 installs.
is there any way to learn random forests using this version?
1
vote
2answers
178 views
sklearn (scikit-learn) logistic regression package — set trained coefficients for classification.
So I read the scikit-learn package webpate:
http://scikit-learn.sourceforge.net/dev/modules/generated/sklearn.linear_model.LogisticRegression.html
I can use logistic regression to fit the data, and ...
1
vote
2answers
57 views
Is there a way to convert nltk featuresets into a scipy.sparse array?
I'm trying to use scikit.learn which needs numpy/scipy arrays for input.
The featureset generated in nltk consists of unigram and bigram frequencies. I could do it manually, but that'll be a lot of ...
1
vote
0answers
72 views
Scikits.learn 0.8 predict_proba() only ever outputs uniform probabilities
I am working with the nice Python scikits.learn package to train some classifiers for part-based face recognition with the Histogram of Oriented Gradient feature. I've successfully trained a linear ...
1
vote
1answer
115 views
Does Scikits learn release the python GIL?
I would like to train multiple one class svms in different threads.
Does anybody know if scikits.learn.svm releases the GIL?
I did not find any answer on google.
Thanks
1
vote
1answer
92 views
Scikits-learn: Use custom vocabulary together with Pipeline
In my scikits-learn Pipeline, I would like to pass a custom vocabulary to CountVectorizer():
text_classifier = Pipeline([
('count', CountVectorizer(vocabulary=myvocab)),
('tfidf', ...
1
vote
1answer
171 views
How to whiten matrix in PCA
I'm working with python and I've implemented the PCA using the following tutorial http://www.cs.otago.ac.nz/cosc453/student_tutorials/principal_components.pdf
Everything works great, I got the ...
0
votes
0answers
33 views
Scikit not giving confusion matrix for Decision Tree classifier
I am using scikit package for twitter sentiment analysis. I am successful in training and predicting using Decision Tree classifier in the scikit package. But somehow I get all 0's in my confusion ...
0
votes
1answer
58 views
Scipy/Numpy/scikits - calculating precision/recall scores based on two arrays
I fit a Logistic Regression Model and train the model based on training dataset using the following
import scikits as sklearn
from sklearn.linear_model import LogisticRegression
lr = ...
0
votes
0answers
50 views
scikits statsmodels - ImportError
How can I troubleshoot this import error? Thanks.
import scikits.statsmodels.api as sm
File "C:\Python27\lib\site-packages\scikits\__init__.py", line 1, in <module>
...
0
votes
1answer
70 views
Python scikits - Buffer has wrong number of dimensions (expected 1, got 2)
I am trying this code snippet. I am using scikits.learn 0.8.1
from scikits.learn import linear_model
import numpy as np
num_rows = 10000
X = np.zeros([num_rows,2])
y = np.zeros([num_rows,1])
# assume ...
0
votes
1answer
80 views
linking to audiolab in python2.6 on osx
hi wondering if anyone else has had a problem with this.
I've been unable to get scikits.audiolab working on OSX. I'm trying easy_install or build from source and both give me the same error
...
0
votes
1answer
220 views
Mac: Error importing scikits while it has been installed
I installed the scikits package but can't import it, I am on Macbook, please let me know what is missing here
bash-3.2$ sudo port install py26-scikits-learn
---> Computing dependencies for ...