kuldeep0204 commited on
Commit
925fdb6
·
verified ·
1 Parent(s): 6e43830

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -3
README.md CHANGED
@@ -1,3 +1,27 @@
1
- huggingface-cli login
2
- git lfs install
3
- git clone https://huggingface.co/username/weather-forecast-model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Weather Forecasting Space
2
+
3
+ This Space lets you input historical temperature + humidity data (past 24 hours) and returns forecasted temperatures for the next 6 hours using a trained ML model.
4
+
5
+ ## Usage
6
+
7
+ - Enter comma-separated timestamps (ISO format), temperatures, and humidities.
8
+ - Click **Submit** to get predictions.
9
+
10
+ ## Model
11
+
12
+ - Model architecture: (your model type, e.g. LSTM / Transformer)
13
+ - Input features: temperature, humidity, hour-of-day sin/cos
14
+ - Training data: (mention dataset)
15
+ - Performance metrics: (MAE, RMSE on test set)
16
+
17
+ ## How It Works
18
+
19
+ - `app.py` loads the model & scaler
20
+ - Preprocesses inputs: builds features, scaling, tensor conversion
21
+ - Runs model inference
22
+ - Returns forecast
23
+
24
+ ## Requirements
25
+
26
+ See `requirements.txt`.
27
+