Add `library_name` to model card
Browse filesThis PR updates the model card by adding `library_name: transformers` to the metadata.
This ensures that the model is correctly categorized on the Hugging Face Hub and enables the automated "how to use" widget, providing users with a quick and verified code snippet for loading and using the model with the 🤗 Transformers library, as demonstrated in the existing `Quickstart` section.
README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
metrics:
|
| 4 |
- mse
|
|
@@ -7,10 +11,6 @@ metrics:
|
|
| 7 |
- wql
|
| 8 |
- crps
|
| 9 |
pipeline_tag: time-series-forecasting
|
| 10 |
-
datasets:
|
| 11 |
-
- thuml/UTSD
|
| 12 |
-
- Salesforce/lotsa_data
|
| 13 |
-
- autogluon/chronos_datasets
|
| 14 |
tags:
|
| 15 |
- time series
|
| 16 |
- time-series
|
|
@@ -19,9 +19,9 @@ tags:
|
|
| 19 |
- pretrained models
|
| 20 |
- generative models
|
| 21 |
- time series foundation models
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
-
|
| 25 |
# Sundial
|
| 26 |
|
| 27 |
🚩 **News (2025.08)** Sundial has been integrated into [Apache IoTDB](https://iotdb.apache.org/), a IoT-native time-series database.
|
|
@@ -51,7 +51,7 @@ The base version is pre-trained on **1 trillion** time points with **128M** para
|
|
| 51 |
pip install transformers==4.40.1 # Use this version and Python 3.10 for stable compatibility
|
| 52 |
```
|
| 53 |
|
| 54 |
-
```
|
| 55 |
import torch
|
| 56 |
from transformers import AutoModelForCausalLM
|
| 57 |
|
|
|
|
| 1 |
---
|
| 2 |
+
datasets:
|
| 3 |
+
- thuml/UTSD
|
| 4 |
+
- Salesforce/lotsa_data
|
| 5 |
+
- autogluon/chronos_datasets
|
| 6 |
license: apache-2.0
|
| 7 |
metrics:
|
| 8 |
- mse
|
|
|
|
| 11 |
- wql
|
| 12 |
- crps
|
| 13 |
pipeline_tag: time-series-forecasting
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
tags:
|
| 15 |
- time series
|
| 16 |
- time-series
|
|
|
|
| 19 |
- pretrained models
|
| 20 |
- generative models
|
| 21 |
- time series foundation models
|
| 22 |
+
library_name: transformers
|
| 23 |
---
|
| 24 |
|
|
|
|
| 25 |
# Sundial
|
| 26 |
|
| 27 |
🚩 **News (2025.08)** Sundial has been integrated into [Apache IoTDB](https://iotdb.apache.org/), a IoT-native time-series database.
|
|
|
|
| 51 |
pip install transformers==4.40.1 # Use this version and Python 3.10 for stable compatibility
|
| 52 |
```
|
| 53 |
|
| 54 |
+
```python
|
| 55 |
import torch
|
| 56 |
from transformers import AutoModelForCausalLM
|
| 57 |
|