Aeon: A unified framework for machine learning with time series
1–10 of 24 posts
Re: Aeon: A unified framework for machine learning with time series
#2Re: Aeon: A unified framework for machine learning with time series
#3https://twitter.com/sktime_toolbox/status/164721412371161907...
Re: Aeon: A unified framework for machine learning with time series
#4Re: Aeon: A unified framework for machine learning with time series
#5Prophet, for example uses dates to create Fourier terms and indicators to holidays for example and that just seems like a more sane approach.
Re: Aeon: A unified framework for machine learning with time series
#6It strikes me as a bit weird that these time series packages tend to discard the time component of the data and just.. not do anything with it. Prophet, for example uses dates to create Fourier terms and indicators to holidays for example and that just seems like a more sane approach.
Re: Aeon: A unified framework for machine learning with time series
#7Wondering how it compares to the rest of the lot: sktime, tslearn, darts, pyts, and cesium.
Re: Aeon: A unified framework for machine learning with time series
#8I wonder why aeon split from sktime. https://twitter.com/sktime_toolbox/status/164721412371161907...
Re: Aeon: A unified framework for machine learning with time series
#9It strikes me as a bit weird that these time series packages tend to discard the time component of the data and just.. not do anything with it. Prophet, for example uses dates to create Fourier terms and indicators to holidays for example and that just seems like a more sane approach.
For your calendar example, date information is very useful because patterns tend to exhibit a cyclic nature across years and there’s discrete special events (holidays). With enough data, you probably don’t need to include the date, but it’s informative for smaller data sets.
Re: Aeon: A unified framework for machine learning with time series
#10There are of course exceptions, something like `TrendPredictor(order=1, interp="polynomial")` as an example can be flexibly adapted up or down the hierarchy of model complexity much easier than commenting out different lines.