Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I have a binary classification problem, where each data point is multi-channel time-series, which can be represented as a matrix TxF, where T is the time-series length, and F as the channels number. T isn't constant - each data point has different length. For classification I need to extract a fixed sized features vector from each data point. Moreover, I suspect that the information is partly embedded as short events in the data, so transformations as fourier are not very helpful. I tried to calculate the covariance matrix of TxF to get a FxF matrix, take the upper/lower part (include the main diagonal) and flat it. After that, I used PCA to reduce dimensionality. I'm afraid I loosing lots of important information using this transformation. Mainly because SVM gives me something near to chance level. I don't think that methods like Matrix Completion will help, maybe stretching methods will be more helpful.

Any suggestion?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.