Spaces:
Running on Zero
Running on Zero
File size: 6,309 Bytes
8d928e8 | 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | """
Local test script for satellite_sr_deploy.
Tests:
1. Import checks for all modules
2. HATSAT inference on a synthetic 198x139 image
3. ESRGAN inference on a synthetic 198x139 image
4. Router switch (HATSAT β ESRGAN)
"""
import sys
import time
from pathlib import Path
# -------------------------------------------------------
# Make sure we run from the deploy root
# -------------------------------------------------------
ROOT = Path(__file__).resolve().parent
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
print("=" * 60)
print("STEP 1 β IMPORT CHECK")
print("=" * 60)
try:
import torch
print(f" torch : {torch.__version__}")
except ImportError as e:
print(f" [FAIL] torch : {e}")
sys.exit(1)
try:
import numpy as np
print(f" numpy : {np.__version__}")
except ImportError as e:
print(f" [FAIL] numpy : {e}")
sys.exit(1)
try:
from PIL import Image
import PIL
print(f" Pillow : {PIL.__version__}")
except ImportError as e:
print(f" [FAIL] Pillow : {e}")
sys.exit(1)
try:
import einops
print(f" einops : {einops.__version__}")
except ImportError as e:
print(f" [FAIL] einops : {e}")
sys.exit(1)
try:
import gradio as gr
print(f" gradio : {gr.__version__}")
except ImportError as e:
print(f" [FAIL] gradio : {e}")
sys.exit(1)
try:
import rasterio
print(f" rasterio : {rasterio.__version__}")
except ImportError as e:
print(f" [FAIL] rasterio : {e}")
sys.exit(1)
print("\nAll imports OK.\n")
# -------------------------------------------------------
# Check weight files
# -------------------------------------------------------
print("=" * 60)
print("STEP 2 β WEIGHT FILE CHECK")
print("=" * 60)
hatsat_ckpt = ROOT / "weights" / "hatsat" / "net_g_150000.pth"
esrgan_ckpt = ROOT / "weights" / "esrgan" / "RRDB_ESRGAN_x4.pth"
if hatsat_ckpt.exists():
size_mb = hatsat_ckpt.stat().st_size / (1024 * 1024)
print(f" HATSAT : {hatsat_ckpt} ({size_mb:.1f} MB) OK")
else:
print(f" [FAIL] HATSAT checkpoint not found: {hatsat_ckpt}")
sys.exit(1)
if esrgan_ckpt.exists():
size_mb = esrgan_ckpt.stat().st_size / (1024 * 1024)
print(f" ESRGAN : {esrgan_ckpt} ({size_mb:.1f} MB) OK")
else:
print(f" [FAIL] ESRGAN checkpoint not found: {esrgan_ckpt}")
sys.exit(1)
print()
# -------------------------------------------------------
# Model router import
# -------------------------------------------------------
print("=" * 60)
print("STEP 3 β MODEL ROUTER IMPORT")
print("=" * 60)
try:
from model_router import SatelliteSRRouter
print(" SatelliteSRRouter imported OK")
except Exception as e:
print(f" [FAIL] model_router import: {e}")
sys.exit(1)
print()
# -------------------------------------------------------
# Create a synthetic test image (198 x 139, RGB)
# -------------------------------------------------------
print("=" * 60)
print("STEP 4 β CREATE SYNTHETIC TEST IMAGE (198x139 RGB)")
print("=" * 60)
import numpy as np
test_arr = np.random.randint(0, 255, (139, 198, 3), dtype=np.uint8)
test_image = Image.fromarray(test_arr, mode="RGB")
print(f" Input size: {test_image.size} (W x H)")
print()
# -------------------------------------------------------
# Instantiate router (lazy β no model loaded yet)
# -------------------------------------------------------
print("=" * 60)
print("STEP 5 β INIT ROUTER")
print("=" * 60)
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f" Device: {device}")
router = SatelliteSRRouter(device=device)
print()
# -------------------------------------------------------
# HATSAT inference
# -------------------------------------------------------
print("=" * 60)
print("STEP 6 β HATSAT INFERENCE")
print("=" * 60)
t0 = time.time()
try:
hatsat_output = router.predict(test_image, model_name="hatsat")
elapsed = time.time() - t0
print(f" Input : {test_image.size}")
print(f" Output : {hatsat_output.size}")
expected = (test_image.width * 4, test_image.height * 4)
if hatsat_output.size == expected:
print(f" Scale check: OK (expected {expected})")
else:
print(f" [WARN] Scale mismatch: expected {expected}, got {hatsat_output.size}")
print(f" Time : {elapsed:.2f}s")
except Exception as e:
print(f" [FAIL] HATSAT inference: {e}")
import traceback; traceback.print_exc()
sys.exit(1)
print()
# -------------------------------------------------------
# ESRGAN inference (router should unload HATSAT first)
# -------------------------------------------------------
print("=" * 60)
print("STEP 7 β ESRGAN INFERENCE (router switches model)")
print("=" * 60)
t0 = time.time()
try:
esrgan_output = router.predict(test_image, model_name="esrgan")
elapsed = time.time() - t0
print(f" Input : {test_image.size}")
print(f" Output : {esrgan_output.size}")
expected = (test_image.width * 4, test_image.height * 4)
if esrgan_output.size == expected:
print(f" Scale check: OK (expected {expected})")
else:
print(f" [WARN] Scale mismatch: expected {expected}, got {esrgan_output.size}")
print(f" Time : {elapsed:.2f}s")
except Exception as e:
print(f" [FAIL] ESRGAN inference: {e}")
import traceback; traceback.print_exc()
sys.exit(1)
print()
# -------------------------------------------------------
# Save outputs
# -------------------------------------------------------
print("=" * 60)
print("STEP 8 β SAVE TEST OUTPUTS")
print("=" * 60)
out_dir = ROOT / "outputs" / "local_test"
out_dir.mkdir(parents=True, exist_ok=True)
hatsat_path = out_dir / "test_hatsat_output.png"
esrgan_path = out_dir / "test_esrgan_output.png"
hatsat_output.save(hatsat_path)
esrgan_output.save(esrgan_path)
print(f" HATSAT output saved : {hatsat_path}")
print(f" ESRGAN output saved : {esrgan_path}")
print()
# -------------------------------------------------------
# Summary
# -------------------------------------------------------
print("=" * 60)
print("LOCAL TEST COMPLETE")
print("=" * 60)
print(" All tests passed.")
print(f" HATSAT : {test_image.size} -> {hatsat_output.size}")
print(f" ESRGAN : {test_image.size} -> {esrgan_output.size}")
print("=" * 60)
|