-
-
Notifications
You must be signed in to change notification settings - Fork 77
v0.0.21
#247
-
Features
-
AWS's Chronos-2 foundational model: Chronos-2 has been added to the foundational models hub. Chronos-2 is a 120M parameter time series foundation model from AWS that provides state-of-the-art forecasting capabilities. You can now use Chronos-2 through the existing Chronos interface. Refer to #245 for more details.
import pandas as pd from timecopilot.models.foundation.chronos import Chronos df = pd.read_csv( "https://timecopilot.s3.amazonaws.com/public/data/events_pageviews.csv", parse_dates=["ds"], ) # Use Chronos-2 model = Chronos(repo_id="s3://autogluon/chronos-2") fcst = model.forecast(df, h=12) print(fcst)
Full Changelog: AzulGarza/timecopilot@v0.0.20...v0.0.21
This discussion was created from the release v0.0.21.
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment