sumit1703 commited on
Commit
5d8719e
·
verified ·
1 Parent(s): 5e8740d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md CHANGED
@@ -1,3 +1,53 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ tags:
4
+ - air-quality
5
+ - pm25
6
+ - pollution-forecasting
7
+ - gradio
8
+ - numpy
9
+ - kaggle
10
+ - aisehack
11
+ pretty_name: PM2.5 Forecasting Demo Data
12
+ size_categories:
13
+ - n<1K
14
  ---
15
+
16
+ # PM2.5 Forecasting Demo Data
17
+
18
+ This dataset stores the lightweight artifacts used by the Hugging Face Space demo:
19
+
20
+ https://huggingface.co/spaces/sumit1703/pm25-forecasting
21
+
22
+ The files are precomputed outputs from the ANRF AISEHack Phase 2 Theme 2 Pollution Forecasting project. The Space uses these artifacts only for visualization. It does not run live model inference, training, or torch at runtime.
23
+
24
+ ## Files
25
+
26
+ | File | Description |
27
+ |---|---|
28
+ | `demo_preds.npy` | Precomputed PM2.5 forecast predictions for demo windows. Shape: `(22, 140, 124, 16)` |
29
+ | `demo_inputs.npy` | Input PM2.5 history windows used for comparison. Shape: `(22, 10, 140, 124)` |
30
+ | `lat_lon.npy` | Latitude/longitude grid used for map axes. |
31
+ | `demo_stats.json` | Feature normalization/statistics metadata from the preprocessing pipeline. |
32
+ | `sample_indices.npy` | Original sample/window indices used by the demo. Shape: `(22,)` |
33
+
34
+ ## Intended Use
35
+
36
+ This dataset is intended for the companion Gradio demo only. It allows the app to load saved prediction artifacts from the Hugging Face Hub instead of storing `.npy` files inside the GitHub repository.
37
+
38
+ ## Source Project
39
+
40
+ - GitHub: https://github.com/sumitjadhav1703/pm25-forecasting-demo
41
+ - Live Space: https://huggingface.co/spaces/sumit1703/pm25-forecasting
42
+ - Kaggle Competition: https://www.kaggle.com/competitions/anrf-aise-hack-phase-2-theme-2-pollution-forecasting-iitd
43
+
44
+ ## Notes and Limitations
45
+
46
+ - These files are for demo visualization, not full model training.
47
+ - The dataset contains a small subset of demo windows, not the complete competition dataset.
48
+ - The predictions are precomputed and static.
49
+ - The Space downloads these files at startup using `huggingface_hub`.
50
+
51
+ ## License
52
+
53
+ MIT