From fdda16fc023369282e3cdff469f9d63e3bb19999 Mon Sep 17 00:00:00 2001 From: Abdul Fatir Date: Mon, 8 Dec 2025 13:49:34 +0100 Subject: [PATCH] Bump version from 2.2.0rc4 to 2.2.0 (#426) *Issue #, if available:* *Description of changes:* By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --- scripts/evaluation/evaluate.py | 6 +++--- src/chronos/__about__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/evaluation/evaluate.py b/scripts/evaluation/evaluate.py index 1ea9fca..594f0c2 100644 --- a/scripts/evaluation/evaluate.py +++ b/scripts/evaluation/evaluate.py @@ -295,7 +295,7 @@ def chronos_2( device: str = "cuda", torch_dtype: str = "float32", batch_size: int = 32, - predict_batches_jointly: bool = False, + cross_learning: bool = False, ): """Evaluate Chronos-2 models. @@ -316,7 +316,7 @@ def chronos_2( batch_size : int, optional, default = 32 Batch size for inference. For Chronos-Bolt models, significantly larger batch sizes can be used - predict_batches_jointly: bool, optional, default = False + cross_learning: bool, optional, default = False If True, cross-learning is enables and model makes joint predictions for all items in the batch """ @@ -335,7 +335,7 @@ def chronos_2( metrics_path=metrics_path, model_id=model_id, batch_size=batch_size, - predict_batches_jointly=predict_batches_jointly, + cross_learning=cross_learning, ) diff --git a/src/chronos/__about__.py b/src/chronos/__about__.py index f622982..8a124bf 100644 --- a/src/chronos/__about__.py +++ b/src/chronos/__about__.py @@ -1 +1 @@ -__version__ = "2.2.0rc4" +__version__ = "2.2.0"