File size: 965 Bytes
c2a61b6 | 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 | # =============================================================================
# AI Climate Downscaling — Configuration
# Model: caidas/swin2SR-realworld-sr-x4-64-bsrgan-psnr (HuggingFace)
# No training needed — pure inference on ERA5 data.
# =============================================================================
data:
source: "cds_api"
raw_dir: "data/raw"
variables:
- "t2m"
region:
lat_min: 6.0
lat_max: 38.0
lon_min: 68.0
lon_max: 98.0
temporal:
start: "2020-01-01"
end: "2020-12-31"
resolution:
high: 0.25
low: 1.0
preprocessing:
normalize: true
normalize_method: "zscore"
handle_missing: "interpolate"
outlier_method: "zscore"
outlier_threshold: 3.0
clip_outliers: false
model:
id: "caidas/swin2SR-realworld-sr-x4-64-bsrgan-psnr"
cache_dir: "checkpoints/swin2sr"
scale_factor: 4
device: "cpu"
server:
host: "127.0.0.1"
port: 8000
|