DrDominikDellermann
commited on
Commit
•
6aa6601
1
Parent(s):
17de9ab
Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,31 @@
|
|
1 |
---
|
|
|
2 |
tags:
|
3 |
-
-
|
4 |
-
-
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
-
This is new updated version of Moirai-1.0-R (https://huggingface.co/Salesforce/moirai-1.0-R-base).
|
8 |
-
The new Moirai model achieved significant improvements (~20%) for low-frequency cases like Yearly and Quarterly data in Normalised Mean Absolute Error (NMAE) for 40 datasets on the Monash repository.
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
pipeline_tag: other
|
3 |
tags:
|
4 |
+
- time series
|
5 |
+
- forecasting
|
6 |
+
- pretrained models
|
7 |
+
- foundation models
|
8 |
+
- time series foundation models
|
9 |
+
- time-series
|
10 |
---
|
11 |
|
|
|
|
|
12 |
|
13 |
+
# DeepFeatTimeGPTMaskedEncoderPredictor
|
14 |
+
|
15 |
+
Copyright (c) 2024. vencortex® - DeOS | Decision Optimization System. All rights reserved.
|
16 |
+
|
17 |
+
````Python
|
18 |
+
from deep_feat_core.libraries.DeepFeatTimeGPT.foundation_models.DeepFeatTimeGPTMaskedEncoder import (
|
19 |
+
DeepFeatTimeGPTMaskedEncoderPredictor,
|
20 |
+
)
|
21 |
+
|
22 |
+
model = DeepFeatTimeGPTMaskedEncoderPredictor(model_id= "medium")
|
23 |
+
|
24 |
+
predictions = model.predict(
|
25 |
+
time_series: pd.DataFrame, # Time series data to be used for prediction
|
26 |
+
measure_type: str, # measure_type
|
27 |
+
frequency: str = "M", # frequency
|
28 |
+
prediction_length: int = 64, # Number of periods to forecast into the future
|
29 |
+
num_samples: int = 1000, # Number of samples to use for prediction
|
30 |
+
context_id: str = "context_id")
|
31 |
+
````
|