Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

v0.0.20 #239

AzulGarza started this conversation in General
Oct 9, 2025 · 0 comments
Discussion options

Features

  • IBM's FlowState foundational model: FlowState has been added to the foundational models hub. FlowState is the first time-scale adjustable Time Series Foundation Model (TSFM), combining a State Space Model (SSM) Encoder with a Functional Basis Decoder for time-scale invariant forecasting. Refer to #234 for more details.

    import pandas as pd
    from timecopilot.models.foundation.flowstate import FlowState
    df = pd.read_csv(
     "https://timecopilot.s3.amazonaws.com/public/data/events_pageviews.csv",
     parse_dates=["ds"],
    )
    # Use the commercial model
    model = FlowState(repo_id="ibm-granite/granite-timeseries-flowstate-r1")
    # Or use the research model
    # model = FlowState(repo_id="ibm-research/flowstate")
    fcst = model.forecast(df, h=12)
    print(fcst)

Fixes

  • TimesFM 2.5 integration: Fixed compatibility issues with TimesFM 2.5 that were introduced in recent updates. The implementation now properly handles the new API changes in TimesFM 2.5. See #235.

  • TimesFM loading from local path: Fixed an issue where TimesFM models couldn't be loaded from local file paths. The model loading mechanism has been updated to properly handle both local and remote model sources. Thanks to @KilianZimmerer for the contribution! See #230.

New Contributors


Full Changelog: AzulGarza/timecopilot@v0.0.19...v0.0.20


This discussion was created from the release v0.0.20.
You must be logged in to vote

Replies: 0 comments

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant

AltStyle によって変換されたページ (->オリジナル) /