Skip to content

Commit

Permalink
v0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
AzulGarza committed Mar 7, 2024
1 parent 75c350f commit 7ceb253
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Changelog

## 0.1.21

### 🚀 Feature Enhancements

#### Introduction of Quantile Forecasts in `forecast` and `cross_validation` Methods 📈

We're thrilled to announce the integration of the `quantiles` argument into TimeGP's `forecast` and `cross_validation` methods. This feature allows users to specify a list of quantiles, offering a comprehensive view of potential future values under uncertainty.

- **Quantile Forecasting Capability:**
By providing a list of quantiles, users can now obtain forecasts at various percentiles of the forecast distribution. This is crucial for understanding the range of possible outcomes and assessing risks more effectively.

``` python
# Generate quantile forecasts
quantiles = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]
timegpt_quantile_fcst_df = timegpt.forecast(df=df, h=12, quantiles=quantiles, ...)
```

- **Enhanced Cross-Validation with Quantiles:**
The `cross_validation` method has been updated to support quantile forecasting, enabling a more nuanced validation of model performance across different percentiles.

``` python
# Apply quantile forecasting in cross-validation
timegpt_cv_quantile_fcst_df = timegpt.cross_validation(df=df, h=12, n_windows=5, quantiles=quantiles, ...)
```

*See full changelog [here](https://github.com/Nixtla/nixtla/releases/v0.1.21).*

## 0.1.20

### 🚀 Feature Enhancements
Expand Down
2 changes: 1 addition & 1 deletion nixtlats/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.20"
__version__ = "0.1.21"
__all__ = ["TimeGPT"]
from .timegpt import TimeGPT
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ author = Nixtla
author_email = [email protected]
copyright = Nixtla Inc.
branch = main
version = 0.1.20
version = 0.1.21
min_python = 3.8
audience = Developers
language = English
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="nixtlats",
version="0.1.20",
version="0.1.21",
description="TimeGPT SDK",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 7ceb253

Please sign in to comment.