You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Query Method: Added a query method to the forecaster for flexible, programmatic access to model capabilities. See #134.
fromtimecopilotimportTimeCopilottc=TimeCopilot(llm="openai:gpt-4o")
tc.forecast(
df="https://timecopilot.s3.amazonaws.com/public/data/air_passengers.csv",
h=12,
)
result=tc.query("What is the best model for monthly data?")
print(result.output)
Async TimeCopilot Agent: Introduced the AsyncTimeCopilot class for asynchronous forecasting and querying. See #135 and #138.
importasynciofromtimecopilotimportAsyncTimeCopilotasyncdefmain():
tc=AsyncTimeCopilot(llm="openai:gpt-4o")
awaittc.forecast(
df="https://timecopilot.s3.amazonaws.com/public/data/air_passengers.csv",
h=12
)
answer=awaittc.query("Which model performed best?")
print(answer.output)
asyncio.run(main())
Fallback Model Support: The TimeCopilotForecaster now supports a fallback model, which is used if the primary model fails. See #123.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Features
Query Method: Added a
querymethod to the forecaster for flexible, programmatic access to model capabilities. See #134.Async TimeCopilot Agent: Introduced the
AsyncTimeCopilotclass for asynchronous forecasting and querying. See #135 and #138.Fallback Model Support: The
TimeCopilotForecasternow supports a fallback model, which is used if the primary model fails. See #123.TimesFM 2.0 Support: Added support for TimesFM 2.0, enabling the use of the latest version of Google's TimesFM model. See #128.
TabPFN Foundation Model: Added the TabPFN time series foundation model. See #113.
Median Ensemble: Introduced a new Median Ensemble model that combines predictions from multiple models to improve forecast accuracy. See #144.
GIFTEval Module: Added the GIFTEval module for advanced evaluation of forecasting models. See #140.
Fixes
Docs
TimeCopilotForecaster. See #122.Full Changelog: AzulGarza/timecopilot@v0.0.11...v0.0.12
This discussion was created from the release v0.0.12.
Beta Was this translation helpful? Give feedback.
All reactions