File size: 1,871 Bytes
cc6a769
e22f65c
 
 
 
cc6a769
a3c4f8d
 
cc6a769
 
 
ab8c52e
 
cc6a769
 
e22f65c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab8c52e
 
 
 
 
e22f65c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: Tufts Jumbo Weather Forecast
emoji: "\U0001F324"
colorFrom: blue
colorTo: indigo
sdk: gradio
sdk_version: "5.23.0"
python_version: "3.12"
app_file: app.py
pinned: false
license: mit
models:
- jeffliulab/weather-forecasting-v1
---

# Tufts Jumbo — 24h Weather Forecast

Real-time deep-learning weather prediction for the Jumbo Statue at Tufts University.

## How It Works

1. **Fetches** the latest HRRR 3 km analysis data from NOAA (42 atmospheric channels, 450x449 grid covering the US Northeast)
2. **Runs** a trained CNN through the spatial snapshot
3. **Predicts** 6 weather variables 24 hours ahead at a single target point (Jumbo Statue, Medford MA)

## Models

| Model | Parameters | Architecture |
|-------|-----------|-------------|
| CNN Baseline | 11.3M | 6 residual blocks, progressive spatial downsampling |
| ResNet-18 | 11.2M | Modified torchvision ResNet-18 (42-channel input) |

## Input Channels (42)

Surface: 2m temperature, 2m humidity, 10m U/V wind, surface gust, solar radiation, 1hr precipitation.
Atmospheric: CAPE, dew point (5 levels), geopotential height (5 levels), temperature (5 levels),
U-wind (6 levels), V-wind (6 levels), cloud cover (4 layers), precipitable water, relative humidity, VIL.

## Output Variables

Temperature (K), Relative Humidity (%), U-Wind (m/s), V-Wind (m/s), Wind Gust (m/s), Precipitation (mm).

## Data Source

[HRRR (High-Resolution Rapid Refresh)](https://rapidrefresh.noaa.gov/hrrr/) — NOAA's 3 km hourly weather model, fetched in real-time from AWS S3 via [Herbie](https://herbie.readthedocs.io/).

## Links

- [Model Weights](https://huggingface.co/jeffliulab/weather-forecasting-v1) — CNN Baseline + ResNet-18 checkpoints
- [GitHub Repository](https://github.com/jeffliulab/real_time_weather_forecasting) — Full project code

## Course

Tufts CS 137 — Deep Neural Networks, Spring 2026