LoRA adapter for
24-hour-ahead hourly day-ahead (DA) electricity price forecasting in Poland (ENTSO-E bidding zone
PL). Fine-tuned on top of
amazon/chronos-2 using ENTSO-E price history. Weather covariates were
not used during training but can be supplied at inference.
1from chronos import Chronos2Pipeline
2import numpy as np
3
4pipeline = Chronos2Pipeline.from_pretrained("albertooooz/chronos-2-lora-pl-day-ahead")
5
6# Univariate context: shape (n_series, n_variates, history_length)
7context = np.array(your_hourly_prices, dtype=np.float64).reshape(1, 1, -1)
8forecast = pipeline.predict(inputs=context, prediction_length=24)
This is a
LoRA adapter — load it together with
amazon/chronos-2. If you use this adapter in research, cite the Chronos-2 foundation model.