Hello,
I have installed mlpy on Fedora 16. I am interested in using DTW library and as per the documentation I tried the simple example script as follows:
import numpy as np
import mlpy
x = np.array([1,2,3,4.6])
y = np.array([1,2,3,5])
mydtw = mlpy.Dtw(onlydist=False)
mydtw.compute(x, y)
However, I am getting the following error:
File "dtw_test.py", line 6, in <module>
mydtw = mlpy.Dtw()
AttributeError: 'module' object has no attribute 'Dtw'
Any help will be much appreciated.
Thx
~P