Priyansu19 commited on
Commit
7081fd1
·
verified ·
1 Parent(s): 8fbb652

Update README.md

Browse files

make the model card

Files changed (1) hide show
  1. README.md +37 -3
README.md CHANGED
@@ -1,3 +1,37 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ base_model: ibm-granite/granite-timeseries-patchtst
6
+ tags:
7
+ - time-series
8
+ - forecasting
9
+ - patchtst
10
+ - electricity
11
+ - eirgrid
12
+ - energy
13
+ metrics:
14
+ - mse
15
+ - mae
16
+ library_name: transformers
17
+ pipeline_tag: time-series-forecasting
18
+ ---
19
+ # PatchTST EirGrid Forecaster ⚡
20
+
21
+ This is a **PatchTST** model fine-tuned on **EirGrid (Irish Grid) System Data** to forecast electricity demand.
22
+
23
+ ## Model Details
24
+ - **Architecture:** PatchTST (Transformer-based Time Series)
25
+ - **Base Model:** `ibm-granite/granite-timeseries-patchtst`
26
+ - **Task:** Long-term Forecasting (96-hour horizon)
27
+ - **Input:** 512 hours of historical load data.
28
+ - **Output:** 96 hours of future load forecast.
29
+
30
+ ## Usage
31
+ ```python
32
+ from transformers import PatchTSTForPrediction
33
+
34
+ # Load the model
35
+ model = PatchTSTForPrediction.from_pretrained("Priyansu19/patchtst-eirgrid-forecaster")
36
+
37
+ # (Add your inference code example here if you want)