tsfreshのextract_features
関数をimportできずに一生嵌っていた。
環境
tsfresh==0.20.0, Python 3.9, Jupyter lab
from tsfresh.feature_extraction import extract_features
で
ImportError: cannot import name 'extract_features' from 'tsfresh' (unknown location)
のエラーがでてextract_features
関数をimportできなかった。
を見てみると...
おい、extract_features
関数があるの、feature_extractionディレクトリの下のextraction.py
じゃねーか!!
ということで、
from tsfresh.feature_extraction.extraction import extract_features
としたら無事importできた。ローカル環境ではfrom tsfresh.feature_extraction import extract_features
でできたんだけどな、パッケージのPath系は謎が多くてしんどい。。。