seqlearn
seqlearn copied to clipboard
Sequence learning toolkit for Python
- Change to use setuptools instead of distutils - Use absolute path for cythonize
great code thanks may you clarify : will it work for multivariate time series 1 where all values are continues values 2 or even will it work for multivariate time...
great code, may you share new repos of others in this direction ?
In hmm.py logsumexp is imported as: from scipy.misc import logsumexp however in the new versions of scipy logsumexp was moved to scipy.special, therefore it should be: from scipy.special import logsumexp
Since I use a new version of ```sklearn```, ```six``` is no longer part of ```sklearn```, but a separate library. Hence, seqlearn gives an error, when trying to run a perceptron:...
the last part of error message is > seqlearn/_decode/bestfirst.c:600:10: fatal error: 'numpy/arrayobject.h' file not found > #include "numpy/arrayobject.h" > ^~~~~~~~~~~~~~~~~~~~~ > 1 error generated. > error: command 'clang' failed with...
can you share more references for ideas for algorithm for Viterbi perceptron ? better with simple short ideas for Viterbi perceptron
I want to know, if there exist any way to pass word vector extracted from word2vec as a feature ? or, i have to use/change something else in place of...