Skip to content

V0.0.15

Features

  • Sundial foundational model: The Sundial model has been added to the foundational models hub. Refer to #157 for more details.
    import pandas as pd
    from timecopilot.models.foundational.sundial import Sundial
    
    df = pd.read_csv(
        "https://timecopilot.s3.amazonaws.com/public/data/algeria_exports.csv", 
        parse_dates=["ds"],
    )
    model = Sundial()
    fcst = model.forecast(df, h=12)
    print(fcst)
    

Fixes

  • Enhanced GIFT-Eval Experiment: The experiment now omits models identified as having potential data leakage, following the latest update to the official evaluation criteria. For more information, refer to #158 and experiments/gift-eval.

Full Changelog: https://github.com/AzulGarza/timecopilot/compare/v0.0.14...v0.0.15