Upload fine-tuned Chronos-2 model with model card and initial metrics
Browse files- README.md +89 -0
- learner.pkl +3 -0
- logs/predictor_log.txt +85 -0
- models/Chronos2_FineTuned/checkpoint-300/README.md +206 -0
- models/Chronos2_FineTuned/checkpoint-300/adapter_config.json +40 -0
- models/Chronos2_FineTuned/checkpoint-300/adapter_model.safetensors +3 -0
- models/Chronos2_FineTuned/checkpoint-300/trainer_state.json +79 -0
- models/Chronos2_FineTuned/checkpoint-300/training_args.bin +3 -0
- models/Chronos2_FineTuned/fine-tuned-ckpt/README.md +206 -0
- models/Chronos2_FineTuned/fine-tuned-ckpt/adapter_config.json +40 -0
- models/Chronos2_FineTuned/fine-tuned-ckpt/adapter_model.safetensors +3 -0
- models/Chronos2_FineTuned/model.pkl +3 -0
- models/Chronos2_FineTuned/utils/oof.pkl +3 -0
- models/Chronos2_ZeroShot/model.pkl +3 -0
- models/Chronos2_ZeroShot/utils/oof.pkl +3 -0
- models/cached_predictions.pkl +3 -0
- models/trainer.pkl +3 -0
- predictor.pkl +3 -0
- utils/data/train.pkl +3 -0
- utils/data/val.pkl +3 -0
- version.txt +1 -0
README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
- solar-energy
|
| 6 |
+
- chronos
|
| 7 |
+
- autogluon
|
| 8 |
+
- lora
|
| 9 |
+
- australia
|
| 10 |
+
library_name: autogluon
|
| 11 |
+
base_model: amazon/chronos-2
|
| 12 |
+
datasets:
|
| 13 |
+
- codenhenhe/volta-solar-daily-v1
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Chronos-2 Fine-tuned for Australian Solar Generation Forecasting
|
| 17 |
+
|
| 18 |
+
This repository contains a fine-tuned Chronos-2 model for daily solar generation forecasting in Australia. The model was fine-tuned using AutoGluon TimeSeriesPredictor and saved as an AutoGluon predictor directory.
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
- Base model: `amazon/chronos-2`
|
| 23 |
+
- Framework: AutoGluon TimeSeriesPredictor
|
| 24 |
+
- Fine-tuning method: LoRA
|
| 25 |
+
- Forecasting task: Daily solar generation forecasting
|
| 26 |
+
- Prediction length: 365 days
|
| 27 |
+
- Context length: 730 days
|
| 28 |
+
- Target variable: Daily solar generation
|
| 29 |
+
- Evaluation metric during training: MSE
|
| 30 |
+
|
| 31 |
+
## Input Features
|
| 32 |
+
|
| 33 |
+
The model uses historical solar generation together with temporal and weather-related covariates.
|
| 34 |
+
|
| 35 |
+
Known covariates include:
|
| 36 |
+
|
| 37 |
+
- `day_of_year`
|
| 38 |
+
- `month`
|
| 39 |
+
- `ALLSKY_SFC_SW_DWN`
|
| 40 |
+
- `T2M`
|
| 41 |
+
- `WS2M`
|
| 42 |
+
- `RH2M`
|
| 43 |
+
|
| 44 |
+
## Initial Metrics
|
| 45 |
+
|
| 46 |
+
The following metrics were obtained from the initial evaluation after fine-tuning. The model was evaluated on the 2024 and 2025 test periods.
|
| 47 |
+
|
| 48 |
+
### Point Forecast Accuracy
|
| 49 |
+
|
| 50 |
+
| Model | Period | MAE | MSE | RMSE | sMAPE (%) | R2 |
|
| 51 |
+
|---|---:|---:|---:|---:|---:|---:|
|
| 52 |
+
| Chronos Fine-Tuned | 2024 | 2.374061 | 11.042445 | 3.323017 | 10.768443 | 0.889873 |
|
| 53 |
+
| Chronos Fine-Tuned | 2025 | 2.468275 | 12.076611 | 3.475142 | 11.053124 | 0.883387 |
|
| 54 |
+
| Chronos Fine-Tuned | Overall | 2.421168 | 11.559528 | 3.399931 | 10.910783 | 0.886614 |
|
| 55 |
+
|
| 56 |
+
### Probabilistic Metrics
|
| 57 |
+
|
| 58 |
+
| Model | Period | Q_0.1 | Q_0.9 | Avg_Q_Loss |
|
| 59 |
+
|---|---:|---:|---:|---:|
|
| 60 |
+
| Chronos Fine-Tuned | 2024 | 0.601763 | 0.500016 | 0.550889 |
|
| 61 |
+
| Chronos Fine-Tuned | 2025 | 0.635956 | 0.506356 | 0.571156 |
|
| 62 |
+
| Chronos Fine-Tuned | Overall | 0.618859 | 0.503186 | 0.561023 |
|
| 63 |
+
|
| 64 |
+
## Baseline Comparison
|
| 65 |
+
|
| 66 |
+
The fine-tuned model was also compared against a seasonal naive baseline.
|
| 67 |
+
|
| 68 |
+
| Model | MAE | RMSE | MAPE (%) | R2 |
|
| 69 |
+
|---|---:|---:|---:|---:|
|
| 70 |
+
| Chronos2-Volta AI | 2.600748 | 3.640213 | 12.897249 | 0.870021 |
|
| 71 |
+
| Seasonal Naive Baseline | 6.080324 | 8.468857 | 29.693408 | 0.296490 |
|
| 72 |
+
|
| 73 |
+
## Loading the Model
|
| 74 |
+
|
| 75 |
+
This model is stored as an AutoGluon TimeSeriesPredictor directory. After downloading the repository, it can be loaded as follows:
|
| 76 |
+
|
| 77 |
+
```python
|
| 78 |
+
from autogluon.timeseries import TimeSeriesPredictor
|
| 79 |
+
|
| 80 |
+
predictor = TimeSeriesPredictor.load("path_to_downloaded_model")
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
## Intended Use
|
| 84 |
+
|
| 85 |
+
This model is intended for postcode-based daily solar generation forecasting in Australia. It can be used as part of a pipeline that maps a user postcode to a representative solar reference point, retrieves or simulates weather covariates, and forecasts future solar generation.
|
| 86 |
+
|
| 87 |
+
## Limitations
|
| 88 |
+
|
| 89 |
+
The model depends on the quality of postcode mapping, weather covariates, and historical solar generation data. Forecast accuracy may vary across regions, seasons, and unusual weather conditions.
|
learner.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef25106b2ed1917522418077381998e7880c90c0d1fcf94f6377f643df1be8c9
|
| 3 |
+
size 7432
|
logs/predictor_log.txt
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Beginning AutoGluon training... Time limit = 3600s
|
| 2 |
+
AutoGluon will save models to '/content/drive/MyDrive/TT/finetuned_model/chronos_2/weather_vars_6_1e_6_300_8'
|
| 3 |
+
=================== System Info ===================
|
| 4 |
+
AutoGluon Version: 1.5.0
|
| 5 |
+
Python Version: 3.12.13
|
| 6 |
+
Operating System: Linux
|
| 7 |
+
Platform Machine: x86_64
|
| 8 |
+
Platform Version: #1 SMP Thu Apr 30 18:17:14 UTC 2026
|
| 9 |
+
CPU Count: 2
|
| 10 |
+
Pytorch Version: 2.9.1+cu128
|
| 11 |
+
CUDA Version: 12.8
|
| 12 |
+
GPU Memory: GPU 0: 14.55/14.56 GB
|
| 13 |
+
Total GPU Memory: Free: 14.55 GB, Allocated: 0.02 GB, Total: 14.56 GB
|
| 14 |
+
GPU Count: 1
|
| 15 |
+
Memory Avail: 8.75 GB / 12.67 GB (69.1%)
|
| 16 |
+
Disk Space Avail: 3.38 GB / 15.00 GB (22.5%)
|
| 17 |
+
WARNING: Available disk space is low and there is a risk that AutoGluon will run out of disk during fit, causing an exception.
|
| 18 |
+
We recommend a minimum available disk space of 10 GB, and large datasets may require more.
|
| 19 |
+
===================================================
|
| 20 |
+
|
| 21 |
+
Fitting with arguments:
|
| 22 |
+
{'enable_ensemble': False,
|
| 23 |
+
'eval_metric': MSE,
|
| 24 |
+
'hyperparameters': {'Chronos2': [{'ag_args': {'name_suffix': '_ZeroShot'}},
|
| 25 |
+
{'ag_args': {'name_suffix': '_FineTuned'},
|
| 26 |
+
'eval_during_fine_tune': True,
|
| 27 |
+
'fine_tune': True,
|
| 28 |
+
'fine_tune_batch_size': 8,
|
| 29 |
+
'fine_tune_context_length': 730,
|
| 30 |
+
'fine_tune_lora_config': {'lora_alpha': 64,
|
| 31 |
+
'r': 32},
|
| 32 |
+
'fine_tune_lr': 1e-06,
|
| 33 |
+
'fine_tune_mode': 'lora',
|
| 34 |
+
'fine_tune_steps': 300}]},
|
| 35 |
+
'known_covariates_names': ['day_of_year',
|
| 36 |
+
'month',
|
| 37 |
+
'ALLSKY_SFC_SW_DWN',
|
| 38 |
+
'T2M',
|
| 39 |
+
'WS2M',
|
| 40 |
+
'RH2M'],
|
| 41 |
+
'num_val_windows': 1,
|
| 42 |
+
'prediction_length': 365,
|
| 43 |
+
'quantile_levels': [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9],
|
| 44 |
+
'random_seed': 123,
|
| 45 |
+
'refit_every_n_windows': 1,
|
| 46 |
+
'refit_full': False,
|
| 47 |
+
'skip_model_selection': False,
|
| 48 |
+
'target': 'target',
|
| 49 |
+
'time_limit': 3600,
|
| 50 |
+
'verbosity': 2}
|
| 51 |
+
|
| 52 |
+
Inferred time series frequency: 'D'
|
| 53 |
+
Provided train_data has 1278500 rows, 500 time series. Median time series length is 2557 (min=2557, max=2557).
|
| 54 |
+
Tuning data is provided. Setting num_val_windows = (1,). Validation scores will be computed on a single window of tuning_data.
|
| 55 |
+
Provided tuning_data has 1461000 rows, 500 time series. Median time series length is 2922 (min=2922, max=2922).
|
| 56 |
+
|
| 57 |
+
Provided data contains following columns:
|
| 58 |
+
target: 'target'
|
| 59 |
+
known_covariates:
|
| 60 |
+
categorical: []
|
| 61 |
+
continuous (float): ['day_of_year', 'month', 'ALLSKY_SFC_SW_DWN', 'T2M', 'WS2M', 'RH2M']
|
| 62 |
+
|
| 63 |
+
To learn how to fix incorrectly inferred types, please see documentation for TimeSeriesPredictor.fit
|
| 64 |
+
|
| 65 |
+
AutoGluon will gauge predictive performance using evaluation metric: 'MSE'
|
| 66 |
+
This metric's sign has been flipped to adhere to being higher_is_better. The metric score can be multiplied by -1 to get the metric value.
|
| 67 |
+
===================================================
|
| 68 |
+
|
| 69 |
+
Starting training. Start time is 2026-05-15 07:25:02
|
| 70 |
+
Models that will be trained: ['Chronos2_ZeroShot', 'Chronos2_FineTuned']
|
| 71 |
+
Training timeseries model Chronos2_ZeroShot. Training for up to 1799.4s of the 3598.7s of remaining time.
|
| 72 |
+
-11.5679 = Validation score (-MSE)
|
| 73 |
+
1.38 s = Training runtime
|
| 74 |
+
70.42 s = Validation (prediction) runtime
|
| 75 |
+
Training timeseries model Chronos2_FineTuned. Training for up to 3526.6s of the 3526.6s of remaining time.
|
| 76 |
+
-11.5228 = Validation score (-MSE)
|
| 77 |
+
144.65 s = Training runtime
|
| 78 |
+
75.15 s = Validation (prediction) runtime
|
| 79 |
+
Training complete. Models trained: ['Chronos2_ZeroShot', 'Chronos2_FineTuned']
|
| 80 |
+
Total runtime: 292.53 s
|
| 81 |
+
Best model: Chronos2_FineTuned
|
| 82 |
+
Best model score: -11.5228
|
| 83 |
+
Loading predictor from path /content/drive/MyDrive/TT/finetuned_model/chronos_2/weather_vars_6_1e_6_300_8
|
| 84 |
+
Loading predictor from path /content/drive/MyDrive/TT/finetuned_model/chronos_2/weather_vars
|
| 85 |
+
Loading predictor from path /content/drive/MyDrive/TT/finetuned_model/chronos_2/weather_vars_6_1e_6_300_8
|
models/Chronos2_FineTuned/checkpoint-300/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: autogluon/chronos-2
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:autogluon/chronos-2
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.17.1
|
models/Chronos2_FineTuned/checkpoint-300/adapter_config.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": {
|
| 4 |
+
"base_model_class": "Chronos2Model",
|
| 5 |
+
"parent_library": "chronos.chronos2.model"
|
| 6 |
+
},
|
| 7 |
+
"base_model_name_or_path": "autogluon/chronos-2",
|
| 8 |
+
"bias": "none",
|
| 9 |
+
"corda_config": null,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.0,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"qalora_group_size": 16,
|
| 27 |
+
"r": 32,
|
| 28 |
+
"rank_pattern": {},
|
| 29 |
+
"revision": null,
|
| 30 |
+
"target_modules": [
|
| 31 |
+
"v",
|
| 32 |
+
"q"
|
| 33 |
+
],
|
| 34 |
+
"target_parameters": null,
|
| 35 |
+
"task_type": null,
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_qalora": false,
|
| 39 |
+
"use_rslora": false
|
| 40 |
+
}
|
models/Chronos2_FineTuned/checkpoint-300/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:028322b786ac15f04e32751d91768d5a3f3a96fa459c28c4f17e92dc3a3a2f56
|
| 3 |
+
size 9450656
|
models/Chronos2_FineTuned/checkpoint-300/trainer_state.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 300,
|
| 3 |
+
"best_metric": 0.07929898798465729,
|
| 4 |
+
"best_model_checkpoint": "/content/drive/MyDrive/TT/finetuned_model/chronos_2/weather_vars_6_1e_6_300_8/models/Chronos2_FineTuned/checkpoint-300",
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 300,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.3333333333333333,
|
| 14 |
+
"grad_norm": 0.4595312774181366,
|
| 15 |
+
"learning_rate": 6.7e-07,
|
| 16 |
+
"loss": 0.1692,
|
| 17 |
+
"step": 100
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.3333333333333333,
|
| 21 |
+
"eval_loss": 0.08046957850456238,
|
| 22 |
+
"eval_runtime": 18.4537,
|
| 23 |
+
"eval_samples_per_second": 97.108,
|
| 24 |
+
"eval_steps_per_second": 12.139,
|
| 25 |
+
"step": 100
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"epoch": 0.6666666666666666,
|
| 29 |
+
"grad_norm": 0.8350940346717834,
|
| 30 |
+
"learning_rate": 3.3666666666666664e-07,
|
| 31 |
+
"loss": 0.1966,
|
| 32 |
+
"step": 200
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"epoch": 0.6666666666666666,
|
| 36 |
+
"eval_loss": 0.07950665801763535,
|
| 37 |
+
"eval_runtime": 18.1701,
|
| 38 |
+
"eval_samples_per_second": 98.623,
|
| 39 |
+
"eval_steps_per_second": 12.328,
|
| 40 |
+
"step": 200
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"epoch": 1.0,
|
| 44 |
+
"grad_norm": 2.096013069152832,
|
| 45 |
+
"learning_rate": 3.3333333333333334e-09,
|
| 46 |
+
"loss": 0.1713,
|
| 47 |
+
"step": 300
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"epoch": 1.0,
|
| 51 |
+
"eval_loss": 0.07929898798465729,
|
| 52 |
+
"eval_runtime": 18.2338,
|
| 53 |
+
"eval_samples_per_second": 98.279,
|
| 54 |
+
"eval_steps_per_second": 12.285,
|
| 55 |
+
"step": 300
|
| 56 |
+
}
|
| 57 |
+
],
|
| 58 |
+
"logging_steps": 100,
|
| 59 |
+
"max_steps": 300,
|
| 60 |
+
"num_input_tokens_seen": 0,
|
| 61 |
+
"num_train_epochs": 9223372036854775807,
|
| 62 |
+
"save_steps": 100,
|
| 63 |
+
"stateful_callbacks": {
|
| 64 |
+
"TrainerControl": {
|
| 65 |
+
"args": {
|
| 66 |
+
"should_epoch_stop": false,
|
| 67 |
+
"should_evaluate": false,
|
| 68 |
+
"should_log": false,
|
| 69 |
+
"should_save": true,
|
| 70 |
+
"should_training_stop": true
|
| 71 |
+
},
|
| 72 |
+
"attributes": {}
|
| 73 |
+
}
|
| 74 |
+
},
|
| 75 |
+
"total_flos": 0.0,
|
| 76 |
+
"train_batch_size": 8,
|
| 77 |
+
"trial_name": null,
|
| 78 |
+
"trial_params": null
|
| 79 |
+
}
|
models/Chronos2_FineTuned/checkpoint-300/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9594332f25b5927ba4714b9c4b8ca3ef96ef2b363032c2c1a278e11719052bc9
|
| 3 |
+
size 6033
|
models/Chronos2_FineTuned/fine-tuned-ckpt/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: autogluon/chronos-2
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:autogluon/chronos-2
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.17.1
|
models/Chronos2_FineTuned/fine-tuned-ckpt/adapter_config.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": {
|
| 4 |
+
"base_model_class": "Chronos2Model",
|
| 5 |
+
"parent_library": "chronos.chronos2.model"
|
| 6 |
+
},
|
| 7 |
+
"base_model_name_or_path": "autogluon/chronos-2",
|
| 8 |
+
"bias": "none",
|
| 9 |
+
"corda_config": null,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.0,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"qalora_group_size": 16,
|
| 27 |
+
"r": 32,
|
| 28 |
+
"rank_pattern": {},
|
| 29 |
+
"revision": null,
|
| 30 |
+
"target_modules": [
|
| 31 |
+
"v",
|
| 32 |
+
"q"
|
| 33 |
+
],
|
| 34 |
+
"target_parameters": null,
|
| 35 |
+
"task_type": null,
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_qalora": false,
|
| 39 |
+
"use_rslora": false
|
| 40 |
+
}
|
models/Chronos2_FineTuned/fine-tuned-ckpt/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:028322b786ac15f04e32751d91768d5a3f3a96fa459c28c4f17e92dc3a3a2f56
|
| 3 |
+
size 9450656
|
models/Chronos2_FineTuned/model.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd28a9c5d87726ac34e1caa6a4ade94fee60ad7919e9532f28086a391aa3338b
|
| 3 |
+
size 1460
|
models/Chronos2_FineTuned/utils/oof.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d755883b7df5f4e0d9e77befc59baa7c99f6911de271e307a89351c85302ec3
|
| 3 |
+
size 8044285
|
models/Chronos2_ZeroShot/model.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82191ede69ce37194cc3a427bfa821279d99a403693c1acd69c49aaf407f7126
|
| 3 |
+
size 1245
|
models/Chronos2_ZeroShot/utils/oof.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba100b845fedc4533f7878519309cb7c04d91edd47c82818a0b3f46e5c35c39c
|
| 3 |
+
size 8044285
|
models/cached_predictions.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ab1217446f84b95f036e8c4d87aaac7cbdbf50c4fdf739e0acedb638b946f91
|
| 3 |
+
size 32195247
|
models/trainer.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d6c74db23e2029d137f353f3435cd75d4b3547d05c85520ca06dc3c675b94a9
|
| 3 |
+
size 1939
|
predictor.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09d1ba5e789f8a17888ab00e04e66f2bb1cde7a4e26b54aa307d991e92141653
|
| 3 |
+
size 582
|
utils/data/train.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ea9fef0ca0087447cf980a2fb01a878896efa24c8e99cffd1d5121893137001
|
| 3 |
+
size 46058290
|
utils/data/val.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3733daa477ebdc8da4da20848f0c4cdcaf94604acba1ef44069a694460bc3c76
|
| 3 |
+
size 52631264
|
version.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1.5.0
|