-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timeseries learning usecase #155
Comments
I think the mid-level abstractions are sufficiently generic 👍 I'm not familiar with the SOTA in time series, but here's a list of things that I think would need to be implemented for supervised time-series learning tasks:
To make things work with the FasterAI stuff, you'd need to register some concrete recipes for datasets and provide some high-level data, blocks = loaddataset("UCR", (TimeSeries, Label))
method = TimeSeriesClassification(blocks)
learner = methodlearner(method, data)
fitonecycle!(learner)
showpredictions(method, learner) Would be great to have time series as an application in FastAI.jl, so let me know if you'd like more info on some of these points. See |
Last I checked, TSAI integration with fastai proper was kind of tenuous, so we could definitely do better here. My big caveat is that time series is just as wide of a domain as images/computer vision, but less explored and nit nearly as well documented. i.e. something that would take at least a GSoC project's worth of work to get a satisfactory start on. |
Hey @lorenzoh, So i was working on this issue. |
Hi,
https://github.com/timeseriesAI/tsai is a TS package on top of FastAI python.
Just adding this to the wishlist. I might have some time to work on it (hopefully) for an upcoming project (or maybe will have to use the python package depending on cycles).
The salient question now is, are the mid-level abstractions sufficiently generic for the TS usecase and if not what needs to change to support that?
And how would this fit into the higher high level FasterAI stuff? Just musing out loud
I'll try to dig into that package this week to see what sort of functionality it needs.
The text was updated successfully, but these errors were encountered: