| # ============================================================================= | |
| # 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 | |