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
Anomaly Detection Capabilities: Added comprehensive anomaly detection functionality to the forecaster, enabling identification of outliers and unusual patterns in time series data. See #213.
importpandasaspdfromtimecopilotimportTimeCopilotForecasterfromtimecopilot.models.statsimportSeasonalNaive, Thetafromtimecopilot.models.foundation.chronosimportChronos# Load your time series datadf=pd.read_csv(
"s3://timecopilot/public/data/taylor_swift_pageviews.csv",
parse_dates=["ds"],
)
# Create forecaster with multiple modelstcf=TimeCopilotForecaster(
models=[
Chronos(repo_id="amazon/chronos-bolt-mini"),
SeasonalNaive(),
Theta(),
]
)
# Detect anomalies with 95% confidence levelanomalies_df=tcf.detect_anomalies(df=df, h=7, level=95)
# Visualize the resultstcf.plot(df, anomalies_df)
fev Experiments: Added new fev experiments to expand the evaluation results. See #211.
Chat-like CLI Capabilities: Introduced an interactive, conversational CLI interface that enables natural language interaction with TimeCopilot. The CLI now supports seamless model switching, anomaly detection integration, and real-time plotting capabilities. See #215.
# Start the interactive CLI
uv run timecopilot
# Natural conversation examples:>"forecast the next 12 months">"now try this with Chronos">"highlight anomalies in this series">"show me the plot">"explain the results"
Fixes
GIFT-Eval Import Corrections: Fixed import statements after refactoring in the GIFT-Eval experiment to ensure proper functionality. See #209.
Documentation Link Updates: Corrected links throughout the documentation after the recent refactoring to maintain proper navigation. See #210.
Documentation
README Improvements: Enhanced README.md with updated information and improved clarity. See #207.
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
Anomaly Detection Capabilities: Added comprehensive anomaly detection functionality to the forecaster, enabling identification of outliers and unusual patterns in time series data. See #213.
fev Experiments: Added new fev experiments to expand the evaluation results. See #211.
Chat-like CLI Capabilities: Introduced an interactive, conversational CLI interface that enables natural language interaction with TimeCopilot. The CLI now supports seamless model switching, anomaly detection integration, and real-time plotting capabilities. See #215.
Fixes
GIFT-Eval Import Corrections: Fixed import statements after refactoring in the GIFT-Eval experiment to ensure proper functionality. See #209.
Documentation Link Updates: Corrected links throughout the documentation after the recent refactoring to maintain proper navigation. See #210.
Documentation
Full Changelog: AzulGarza/timecopilot@v0.0.17...v0.0.18
This discussion was created from the release v0.0.18.
Beta Was this translation helpful? Give feedback.
All reactions