TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Aeon: A unified framework for machine learning with time series

121 pointsby megalodonalmost 2 years ago

10 comments

hotstickyballsalmost 2 years ago
It 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.<p>Prophet, for example uses dates to create Fourier terms and indicators to holidays for example and that just seems like a more sane approach.
评论 #36434410 未加载
评论 #36435674 未加载
评论 #36438383 未加载
评论 #36433883 未加载
tony_bagnallalmost 2 years ago
hi, I dont want to enter a public discussion about the split of sktime, I fear the application of Godwin&#x27;s law. A summary of the key points behind the split from my perspective are here <a href="https:&#x2F;&#x2F;github.com&#x2F;aeon-toolkit&#x2F;aeon&#x2F;issues&#x2F;456">https:&#x2F;&#x2F;github.com&#x2F;aeon-toolkit&#x2F;aeon&#x2F;issues&#x2F;456</a> the other sides view will no doubt be forthcoming. If you want to chat about it, join our slack and message me, I&#x27;m more than happy to help. How are we different? Well I think we can all live together, its open source, but from my perspective the priorities are 1. Align as closely as we can with sklearn, so as to make it completely intuitive how to use aeon if you know sklearn. 2. Focus on implementations of state of the art algorithms for time series machine learners and less on just wrapping other code. The goal is to reduce the lead time from publication of new ideas to widespread adoption 3. Documentation: make it good.<p>my interests primarily lie in classification, clustering and regression, but next year we are going into the forecasting world, plenty of exciting collaborations in the brew.
评论 #36440466 未加载
Epa095almost 2 years ago
Wondering how it compares to the rest of the lot: sktime, tslearn, darts, pyts, and cesium.
评论 #36434135 未加载
评论 #36435230 未加载
polo333almost 2 years ago
Aeon is an sktime fork which happened after one of the sktime core developers (Franz K.) took hostage of the sktime project by kicking out other core devs from the GitHub. Its info you can collect from some GH issues
djl0almost 2 years ago
Looking forward to checking this out! How does this compare with darts[1]?<p>[1] <a href="https:&#x2F;&#x2F;unit8co.github.io&#x2F;darts&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;unit8co.github.io&#x2F;darts&#x2F;</a>
评论 #36435702 未加载
ahif1999almost 2 years ago
Aeon has the advantage of including a friendly deep learning framework, all of the models discussed on the &#x27;Deep Learning for Time Series Classification: a review&quot; are included in aeon with the variety of choices on how to change the parameters of the architecture. More state of the art models such as InceptionTime are also included, not only for classification but regression as well and soon forecasting and clustering.
thetinymitealmost 2 years ago
I wonder why aeon split from sktime.<p><a href="https:&#x2F;&#x2F;twitter.com&#x2F;sktime_toolbox&#x2F;status&#x2F;1647214123711619072?cxt=HHwWgICzjZWhitwtAAAA" rel="nofollow noreferrer">https:&#x2F;&#x2F;twitter.com&#x2F;sktime_toolbox&#x2F;status&#x2F;164721412371161907...</a>
评论 #36434253 未加载
评论 #36436100 未加载
uoaeialmost 2 years ago
To obfuscate the choice of algorithm behind kwargs (as opposed to creating separate classes) has always seemed to me a suspect choice, in sklearn as well as here. And it seems to make development of the package more complex at the expense of... less readable code for the user, with less flexibility for differences in hyperparameter specifications, etc.<p>There are of course exceptions, something like `TrendPredictor(order=1, interp=&quot;polynomial&quot;)` as an example can be flexibly adapted up or down the hierarchy of model complexity much easier than commenting out different lines.
评论 #36436513 未加载
ahif1999almost 2 years ago
Recently aeon included a new implementation for both PAA and SAX transformations that are much more efficient and much faster !
ahif1999almost 2 years ago
all of the functionalities of aeon can easily be mastered thanks for the help of its documentation and example notebooks.