Skip to content

Commit 436cf2b

Browse files
authored
release: v0.0.26 (#341)
2 parents 3b94ece + f543a86 commit 436cf2b

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

docs/changelogs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Welcome to the TimeCopilot Changelog. Here, you will find a comprehensive list of all the changes, updates, and improvements made to the TimeCopilot project. This section is designed to keep you informed about the latest features, bug fixes, and enhancements as we continue to develop and refine the TimeCopilot experience. Stay tuned for regular updates and feel free to explore the details of each release below.
44

5-
5+
- [v0.0.26](v0.0.26.md)
66
- [v0.0.25](v0.0.25.md)
77
- [v0.0.24](v0.0.24.md)
88
- [v0.0.23](v0.0.23.md)

docs/changelogs/v0.0.26.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Features
22

3-
* **New neural models**: Added 3 new auto neural models: `AutoNBEATS`, `AutoDeepAR`, and `AutoPatchTST`. All support `quantiles` for probabilistic forecasts trained with `MQLoss` and follow the same interface as the existing `AutoNHITS` and `AutoTFT`.
3+
* **New neural models**: Added 3 new auto neural models: `AutoNBEATS`, `AutoDeepAR`, and `AutoPatchTST`. All support `quantiles` for probabilistic forecasts trained with `MQLoss` and follow the same interface as the existing `AutoNHITS` and `AutoTFT`. See [#338](https://github.com/TimeCopilot/timecopilot/pull/338).
44

55
```python
66
import pandas as pd
@@ -15,7 +15,7 @@
1515
fcst_df = model.forecast(df, h=12, quantiles=[0.1, 0.5, 0.9])
1616
```
1717

18-
* **New ML models**: Added 7 new auto ML models: `AutoLinearRegression`, `AutoXGBoost`, `AutoRidge`, `AutoLasso`, `AutoElasticNet`, `AutoRandomForest`, and `AutoCatboost`. All models support `quantiles` for probabilistic forecasts via conformal prediction and follow the same interface as the existing `AutoLGBM`.
18+
* **New ML models**: Added 7 new auto ML models: `AutoLinearRegression`, `AutoXGBoost`, `AutoRidge`, `AutoLasso`, `AutoElasticNet`, `AutoRandomForest`, and `AutoCatboost`. All models support `quantiles` for probabilistic forecasts via conformal prediction and follow the same interface as the existing `AutoLGBM`. See [#337](https://github.com/TimeCopilot/timecopilot/pull/337).
1919

2020
```python
2121
import pandas as pd
@@ -38,7 +38,7 @@
3838
fcst_df = model.forecast(df, h=12, quantiles=[0.1, 0.5, 0.9])
3939
```
4040

41-
* **Quantile forecasts for AutoLGBM, AutoNHITS, and AutoTFT**: These models now support quantile forecasts via the `quantiles` parameter. Pass a list of floats between 0 and 1 to receive additional output columns named `model-q-{percentile}`. Note that `level` is not supported for these models; use `quantiles` instead.
41+
* **Quantile forecasts for AutoLGBM, AutoNHITS, and AutoTFT**: These models now support quantile forecasts via the `quantiles` parameter. Pass a list of floats between 0 and 1 to receive additional output columns named `model-q-{percentile}`. Note that `level` is not supported for these models; use `quantiles` instead. See [#336](https://github.com/TimeCopilot/timecopilot/pull/336).
4242

4343
- `AutoLGBM` computes prediction intervals via conformal prediction using cross-validation residuals.
4444
- `AutoNHITS` and `AutoTFT` are trained with [`MQLoss`](https://nixtla.github.io/neuralforecast/losses.pytorch.html) when quantiles are requested.
@@ -58,6 +58,12 @@
5858
# columns: unique_id, ds, AutoLGBM, AutoLGBM-q-10, AutoLGBM-q-50, AutoLGBM-q-90
5959
```
6060

61+
### Documentation
62+
63+
* **Custom ensembles example**: Added the [Custom Ensembles](https://timecopilot.dev/examples/custom-ensembles/) notebook, showing how to combine multiple models into custom ensembles. See [#340](https://github.com/TimeCopilot/timecopilot/pull/340).
64+
65+
* **Explaining foundation models and ensembles example**: Added the [Explaining Foundation Models and Ensembles](https://timecopilot.dev/examples/explaining-foundation-models-and-ensembles/) notebook. See [#340](https://github.com/TimeCopilot/timecopilot/pull/340).
66+
6167
---
6268

6369
**Full Changelog**: https://github.com/TimeCopilot/timecopilot/compare/v0.0.25...v0.0.26

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ license = "MIT"
111111
name = "timecopilot"
112112
readme = "README.md"
113113
requires-python = ">=3.10"
114-
version = "0.0.25"
114+
version = "0.0.26"
115115

116116
[project.optional-dependencies]
117117
distributed = [

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)