Closed MislavSag closed 1 year ago
On this site: https://github.com/scipy/scipy/releases/tag/v1.9.0
it says
Removed stats.median_absolute_deviation
Maybe the package doesn't work with scipy 1.9.0 and above ?
Hi! Correct, the latest scipy stable released has changed the name to scipy.stats.median_abs_deviation
. We'll look onto this. For now I recommend that you downgrade the scipy release (e.g. pip install scipy==1.8.1
).
Hi! Correct, the latest scipy stable released has changed the name to
scipy.stats.median_abs_deviation
. We'll look onto this. For now I recommend that you downgrade the scipy release (e.g.pip install scipy==1.8.1
).
To fix this, I changed line 661 of the '\tsfel\feature_extraction\features.py' script from:
return scipy.stats.median_absolute_deviation(signal, scale=1) --to-- return scipy.stats.median_abs_deviation(signal, scale=1)
Hope this helps!
Restarted the system after making the change. It works. Thank you!
Updated on new release v0.1.5
Hi,
I have installed tsfel in an empty virtual environment inside Dockerfile:
When I want to extract all features, I get an error: