aimclub / FEDOT

Automated modeling and machine learning framework FEDOT
https://fedot.readthedocs.io
BSD 3-Clause "New" or "Revised" License
623 stars 84 forks source link

Time series classification with FEDOT? #429

Closed j-adamczyk closed 6 months ago

j-adamczyk commented 2 years ago

From the documentation and examples I see that both time series forecasting and tabular classification are possible with FEDOT. But is time series classification also possible? For example, automatic feature extraction to turn time series into tabular format with extracted features and further automatic classification?

nicl-nno commented 2 years ago

Hello, Jacub!

The time series classification is not implemented yet, but it can be added to the framework with relatively minor changes.

If you want to make this change by yourself, start from the extending of DataTypesEnum class with 'ts_classification' option and adding of automatic feature extraction algorithms (e.g. quantile features, spectral features, etc) as data operation.

The modification of the pipeline optimizer is not required, since it is model-agnostic by design.

We are ready to help with any questions if necessary.

nicl-nno commented 6 months ago

Implemented in https://github.com/aimclub/Fedot.Industrial