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
Optional freq Parameter: The freq parameter is now optional in all forecast and cross-validation methods. If not provided, frequency is inferred automatically from the data. See #96. Example:
importpandasaspdfromtimecopilot.models.benchmarksimportSeasonalNaivedf=pd.read_csv(
"https://timecopilot.s3.amazonaws.com/public/data/algeria_exports.csv",
parse_dates=["ds"],
)
model=SeasonalNaive()
# freq is now optionalfcst=model.forecast(df, h=12)
Improved Model Docstrings: All foundational and statistical model constructors are now fully documented, with clear parameter explanations and references to official sources. See #93 and #94.
Comprehensive Module Docstrings: Added module-level docstrings to improve API documentation and usability. See #82.
TimeCopilotForecaster Documentation: Documented the TimeCopilotForecaster class, including its constructor and methods, to clarify its unified, multi-model forecasting and cross-validation interface. See #97. Example:
Parallel Test Execution: Added pytest-xdist to enable running tests in parallel, speeding up CI and local test runs. See #75.
Fixes
Documentation Improvements: Enhanced documentation for all models and constructors, ensuring clarity and consistency across the codebase. See #93, #94, and #82.
S3 Data Source: All example and test data now use S3 URLs for consistency and reproducibility. See #73.
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
freqParameter: Thefreqparameter is now optional in all forecast and cross-validation methods. If not provided, frequency is inferred automatically from the data. See #96. Example:Improved Model Docstrings: All foundational and statistical model constructors are now fully documented, with clear parameter explanations and references to official sources. See #93 and #94.
Comprehensive Module Docstrings: Added module-level docstrings to improve API documentation and usability. See #82.
TimeCopilotForecaster Documentation: Documented the
TimeCopilotForecasterclass, including its constructor and methods, to clarify its unified, multi-model forecasting and cross-validation interface. See #97. Example:Tests
pytest-xdistto enable running tests in parallel, speeding up CI and local test runs. See #75.Fixes
Documentation Improvements: Enhanced documentation for all models and constructors, ensuring clarity and consistency across the codebase. See #93, #94, and #82.
S3 Data Source: All example and test data now use S3 URLs for consistency and reproducibility. See #73.
Full Changelog: v0.0.10...v0.0.11
This discussion was created from the release v0.0.11.
Beta Was this translation helpful? Give feedback.
All reactions