LaurentiuStancioiu
commited on
Commit
•
e470798
1
Parent(s):
df0b87a
Update README.md
Browse files
README.md
CHANGED
@@ -8,4 +8,34 @@ tags:
|
|
8 |
- climate
|
9 |
size_categories:
|
10 |
- 100K<n<1M
|
11 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
- climate
|
9 |
size_categories:
|
10 |
- 100K<n<1M
|
11 |
+
---
|
12 |
+
|
13 |
+
## Cluj Napoca Weather Dataset
|
14 |
+
|
15 |
+
A weather dataset of Cluj Napoca taken from the OpenWheather History API. It was scraped from the Open Weather
|
16 |
+
Map using their Weather API. The data collected was from January 1st 2008 until May 2023
|
17 |
+
at an hourly rate. The columns are presented in the image below:
|
18 |
+
|
19 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/6376481a48baeb86b0c3038b/DnLOpVnoBFJANEb7B44ny.png)
|
20 |
+
|
21 |
+
The data is licensed per OpenWeather under the [odbl license](https://opendatacommons.org/licenses/odbl/).
|
22 |
+
|
23 |
+
### Long Time Series Predictions
|
24 |
+
|
25 |
+
Clone the [Time-Series-Library](https://github.com/thuml/Time-Series-Library) repository.
|
26 |
+
```
|
27 |
+
git clone https://github.com/thuml/Time-Series-Library.git
|
28 |
+
```
|
29 |
+
|
30 |
+
For training the model create a folder called dataset. After that you can either modify the .sh files (for me it didn't work), or run the predict.ipynb file found in the Files Folder.
|
31 |
+
Alternatively, check the HuggingFace implementations for [Informer](https://huggingface.co/docs/transformers/model_doc/informer),
|
32 |
+
[Autoformer](https://huggingface.co/docs/transformers/model_doc/autoformer), [Vanilla Transformer](https://huggingface.co/docs/transformers/model_doc/time_series_transformer),
|
33 |
+
[PatchTST](https://huggingface.co/docs/transformers/model_doc/patchtst) and [PatchTSMixer](https://huggingface.co/docs/transformers/model_doc/patchtsmixer)
|
34 |
+
|
35 |
+
### Results
|
36 |
+
|
37 |
+
Without any hyperparameter tuning the results on this dataset were the following:
|
38 |
+
|
39 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/6376481a48baeb86b0c3038b/MQ3G4h7Y04ttSlXvdXCSw.png)
|
40 |
+
|
41 |
+
A description of waht I did can be found [here]()
|