hanangani commited on
Commit
6655bb0
·
verified ·
1 Parent(s): d443668

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: none
4
+ tags:
5
+ - image-super-resolution
6
+ - remote-sensing
7
+ - satellite-imagery
8
+ - cloud-microphysics
9
+ ---
10
+
11
+ # CloudSR Checkpoints
12
+
13
+ Checkpoint files for the Cloud Microphysics Super-Resolution project.
14
+
15
+ ## Files
16
+
17
+ - `cloudsr_seviri_to_viirs_model_50000.pth`
18
+ Single-stage checkpoint for SEVIRI to VIIRS super-resolution.
19
+
20
+ - `cloudsr_msg_to_mtg_model_50000.pth`
21
+ Single-stage checkpoint for MSG to MTG super-resolution.
22
+
23
+ ## Usage
24
+
25
+ These are custom PyTorch checkpoints intended to be used with the local inference code in the main project repository.
26
+
27
+ Example:
28
+
29
+ ```bash
30
+ python inference_sr.py \
31
+ -i /path/to/input \
32
+ -o /path/to/output \
33
+ --started_ckpt_path /path/to/cloudsr_seviri_to_viirs_model_50000.pth
34
+ ```