Re: [Scikit-learn-general] Using HIdden Markov Model for predection

2013-10-20 Thread Robert McGibbon
Hey Maheshakya, There are no functions directly in the API for this, so you'll have to be willing to (slightly) roll up your sleeves here. Because the HMM is markovian, the only information you need to predict the `n+1`-th observation in a sequence is the posterior distribution over the hidden

Re: [Scikit-learn-general] Hidden Markov Model for one dimensional time series data

2013-10-20 Thread Robert McGibbon
Yeah, just reshape s1 and s2 to be (50,1). > s1 = np.random.randn(50,1) > s2 = np.random.randn(50,1)+5 -Robert On Oct 18, 2013, at 3:57 PM, Alexandr M wrote: > Hello everybody, > > I am trying to fit HMM model with two components > GaussianHMM(n_components = 2) > to one dimensional vector: >

Re: [Scikit-learn-general] LabelBinarizer for large data

2013-10-20 Thread Olivier Grisel
2013/10/20 Mahendra Kariya : > Hi All, > > I have doing multi label classification for which I am using LabelBinarizer. > I am dealing with more than 6M data items and each data item has minimum 1 > and maximum 5 labels. Number of unique labels is more than 42K. When I am > trying to binarize label

Re: [Scikit-learn-general] Issue with travis and test_common

2013-10-20 Thread Olivier Grisel
I think we could investigate by adding a test in PR that check that the list of collected estimators is not empty. This is what I did here: https://github.com/scikit-learn/scikit-learn/pull/2538 Andreas if you want to play in this experimental branch by adding print statements to debug the travis

[Scikit-learn-general] LabelBinarizer for large data

2013-10-20 Thread Mahendra Kariya
Hi All, I have doing multi label classification for which I am using LabelBinarizer. I am dealing with more than 6M data items and each data item has minimum 1 and maximum 5 labels. Number of unique labels is more than 42K. When I am trying to binarize labels, I am getting ValueError: array is

Re: [Scikit-learn-general] Issue with travis and test_common

2013-10-20 Thread Andreas Mueller
On 10/20/2013 07:28 AM, Olivier Grisel wrote: > Apparently travis does no longer run the tests from the test_common > suite for some reason. > > I merged the RANSAC PR and discovered afterwards that those tests are > now failing in master. I am currently working on a fix to make the > test pass aga

Re: [Scikit-learn-general] classifiers

2013-10-20 Thread Olivier Grisel
Stackoverflow is better suited for very specific programming questions rather than large subjective opinion polling (which is actually explicitly out of the scope of stackoverflow). So if you can reduce your problem to something reproducible (for instance in a 10 liner code snippet with expected v

[Scikit-learn-general] Issue with travis and test_common

2013-10-20 Thread Olivier Grisel
Apparently travis does no longer run the tests from the test_common suite for some reason. I merged the RANSAC PR and discovered afterwards that those tests are now failing in master. I am currently working on a fix to make the test pass again for RANSACRegressor. Any idea what is wrong with the

Re: [Scikit-learn-general] Multi Class Classification

2013-10-20 Thread Lars Buitinck
2013/10/20 Lars Buitinck : > The expected shape is actually (n,), not [n,1]. But anyway, this is > multilabel classification, and some support for it is offered in > sklearn.multiclass. Oops, hadn't seen Vlad's reply! --

Re: [Scikit-learn-general] Multi Class Classification

2013-10-20 Thread Lars Buitinck
2013/10/20 Mahendra Kariya : > X Y > --- > lorem ipsum 1label1, label2, label3 > lorem ipsum 2label1, label3, label6, label2, label4 > lorem ipsum 3label2, label8 > lorem ipsum 4label4 > > In

Re: [Scikit-learn-general] Multi Class Classification

2013-10-20 Thread Mahendra Kariya
Thanks Vlad. I will take a look at the link and get back to this awesome community in case of any more questions.   Regards, Mahendra Kariya On Sunday, 20 October 2013 5:10 PM, Vlad Niculae wrote: Hi, > >We refer to such a setting as *multi-label*.  Please take a look at >http://scikit-learn

Re: [Scikit-learn-general] Multi Class Classification

2013-10-20 Thread Vlad Niculae
Hi, We refer to such a setting as *multi-label*. Please take a look at http://scikit-learn.org/stable/modules/multiclass.html Yours, Vlad On Sun, Oct 20, 2013 at 1:19 PM, Mahendra Kariya wrote: > Hi, > > I am trying to do multi class classification using NB or linear SVM. In the > training dat

[Scikit-learn-general] Multi Class Classification

2013-10-20 Thread Mahendra Kariya
Hi, I am trying to do multi class classification using NB or linear SVM. In the training data, each data item has 1 to 5 labels. So the data looks something like below. X                    Y -        -- lorem ipsum 1        label1, label2, label3