Spaces:
Sleeping
Sleeping
File size: 10,501 Bytes
efa191f d833ff7 fdedbc8 d833ff7 f0f8a0c e9da5a1 fdedbc8 efa191f 806d747 efa191f 3af0ee8 efa191f 3af0ee8 efa191f 6248748 efa191f 3af0ee8 efa191f 6248748 3af0ee8 90d5913 6248748 3af0ee8 efa191f 6248748 3af0ee8 efa191f 3af0ee8 efa191f 6248748 efa191f fdedbc8 d2bef7c 9f7f464 fdedbc8 efa191f 9f7f464 d2bef7c fdedbc8 d2bef7c fdedbc8 d2bef7c fdedbc8 d2bef7c efa191f fdedbc8 e9da5a1 efa191f 6248748 efa191f 6248748 efa191f d833ff7 efa191f e9da5a1 efa191f fdedbc8 f0f8a0c d2bef7c d833ff7 efa191f d2bef7c d833ff7 d2bef7c d833ff7 efa191f d833ff7 efa191f d2bef7c efa191f e9da5a1 fdedbc8 e9da5a1 efa191f fdedbc8 d833ff7 |
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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
# app.py (SpaceX-ish styling + background video + your exact logic)
import gradio as gr
from PIL import Image
# Pipeline (must support: run_search_and_generate(user_imgs=[...], user_prompt=...))
from pipeline import run_search_and_generate, load_from_hf
# --- Quick Starter file paths (must exist in your HF dataset repo) ---
QS_1_PATH = "images/LakeWater/LakeWater_000550.jpg"
QS_2_PATH = "images/DenseForest/DenseForest_000000.jpg"
QS_3_PATH = "images/ResidentialDense/ResidentialDense_001050.jpg"
# ----------------------------
# Styling
# ----------------------------
CSS = """
:root{
--bg: #070A0F;
--panel: rgba(15, 19, 29, 0.72);
--panel2: rgba(10, 12, 18, 0.55);
--line: rgba(255,255,255,0.12);
--text: rgba(255,255,255,0.94);
--muted: rgba(255,255,255,0.68);
--accent: #7DF9FF;
--accent2: #7C5CFF;
}
/* IMPORTANT: make the default Gradio background transparent so our image shows */
body, .gradio-container{
background: transparent !important;
}
/* Background image layer */
#bg-wrap{
position: fixed;
inset: 0;
z-index: -1; /* put behind everything */
pointer-events: none;
overflow: hidden;
}
#bg-image{
position: absolute;
inset: 0;
background-image:
radial-gradient(1200px 700px at 60% 25%, rgba(125,249,255,0.10), transparent 60%),
radial-gradient(900px 600px at 15% 10%, rgba(124,92,255,0.10), transparent 60%),
url("https://huggingface.co/spaces/LevyJonas/SurfaceChangePredictor/resolve/main/assets/image2.webp");
background-size: cover;
background-position: 65% 80%; /* pushes the Earth into view */
background-repeat: no-repeat;
opacity: 0.95;
filter: brightness(1.25) contrast(1.08) saturate(1.12);
}
/* Light vignette (not too dark) */
#bg-overlay{
position: absolute;
inset: 0;
background: radial-gradient(900px 700px at 50% 30%, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}
/* App container above background */
#app-wrap{
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
padding: 26px 16px 40px;
}
/* Hero card */
.hero{
border: 1px solid var(--line);
background: linear-gradient(180deg, rgba(15,19,29,0.85), rgba(10,12,18,0.55));
border-radius: 16px;
padding: 22px 22px;
box-shadow: 0 10px 40px rgba(0,0,0,0.45);
margin-bottom: 14px;
}
.hero h1{
margin: 0;
font-size: 28px;
letter-spacing: 0.6px;
}
.hero p{
margin: 8px 0 0;
color: var(--muted);
line-height: 1.45;
}
.badges{
margin-top: 12px;
display:flex;
flex-wrap:wrap;
gap:10px;
}
.badge{
border: 1px solid var(--line);
background: rgba(0,0,0,0.25);
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
color: var(--muted);
}
.badge b{ color: var(--text); }
/* Panels */
.panel{
border: 1px solid var(--line);
background: var(--panel);
border-radius: 16px;
padding: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
/* Inputs */
textarea, input{
background: rgba(0,0,0,0.25) !important;
color: var(--text) !important;
border: 1px solid var(--line) !important;
border-radius: 12px !important;
}
/* Buttons */
button, .gr-button{
border-radius: 12px !important;
border: 1px solid var(--line) !important;
}
#run-btn{
background: linear-gradient(90deg, rgba(125,249,255,0.95), rgba(124,92,255,0.95)) !important;
color: #05060A !important;
font-weight: 800 !important;
border: none !important;
}
#qs-row button{
background: rgba(255,255,255,0.06) !important;
color: var(--text) !important;
}
#qs-row button:hover{
border-color: rgba(125,249,255,0.45) !important;
}
/* Galleries */
.gr-gallery{
border-radius: 16px !important;
border: 1px solid var(--line) !important;
background: var(--panel2) !important;
}
"""
# ----------------------------
# Core helpers (unchanged logic)
# ----------------------------
def _files_to_pil_list(files, n_use: int):
"""Convert uploaded files to a list of PIL images (use first n_use, capped to 1..4)."""
if not files:
return []
n = max(1, min(4, int(n_use), len(files)))
imgs = []
for f in files[:n]:
path = f.name if hasattr(f, "name") else str(f)
imgs.append(Image.open(path).convert("RGB"))
return imgs
def run_app(files, n_user_imgs, prompt, k_retrieve, n_i2i, n_t2i, strength_i2i, steps, gen_size, seed):
try:
if not files:
return [], [], [], "Error: Please upload at least 1 image."
max_allowed = int(n_user_imgs) # slider value (1–4)
if len(files) > max_allowed:
return [], [], [], f"Error: You uploaded {len(files)} images, but the limit is {max_allowed}. Please remove extra files."
user_imgs = _files_to_pil_list(files, max_allowed)
retrieved, gen_i2i, gen_t2i, info = run_search_and_generate(
user_imgs=user_imgs,
user_prompt=prompt,
k_retrieve=k_retrieve,
n_i2i=n_i2i,
n_t2i=n_t2i,
strength_i2i=strength_i2i,
steps=steps,
gen_size=gen_size,
seed=int(seed),
)
retr_gallery = [(r["img"], f"{r['label']} | cos={r['sim']:.3f}") for r in retrieved]
i2i_gallery = [(im, f"img2img #{i+1}") for i, im in enumerate(gen_i2i)]
t2i_gallery = [(im, f"txt2img #{i+1}") for i, im in enumerate(gen_t2i)]
summary = "\n".join([f"{k}: {v}" for k, v in info.items()])
return retr_gallery, i2i_gallery, t2i_gallery, summary
except Exception as e:
return [], [], [], f"Error: {e}"
def run_quickstarter(rel_path, prompt, k_retrieve, n_i2i, n_t2i, strength_i2i, steps, gen_size, seed):
try:
img = load_from_hf(rel_path)
retrieved, gen_i2i, gen_t2i, info = run_search_and_generate(
user_imgs=[img],
user_prompt=prompt,
k_retrieve=k_retrieve,
n_i2i=n_i2i,
n_t2i=n_t2i,
strength_i2i=strength_i2i,
steps=steps,
gen_size=gen_size,
seed=int(seed),
)
retr_gallery = [(r["img"], f"{r['label']} | cos={r['sim']:.3f}") for r in retrieved]
i2i_gallery = [(im, f"img2img #{i+1}") for i, im in enumerate(gen_i2i)]
t2i_gallery = [(im, f"txt2img #{i+1}") for i, im in enumerate(gen_t2i)]
summary = "\n".join([f"{k}: {v}" for k, v in info.items()])
return retr_gallery, i2i_gallery, t2i_gallery, summary
except Exception as e:
return [], [], [], f"Error: {e}"
# ----------------------------
# UI (SpaceX-ish)
# ----------------------------
with gr.Blocks(title="Satellite Patch: Retrieve + Generate", css=CSS) as demo:
# OPTIONAL background image:
# If you don't have it, comment this HTML block out.
gr.HTML("""
<div id="bg-wrap">
<div id="bg-image"></div>
<div id="bg-overlay"></div>
</div>
""")
# Hero section
gr.HTML("""
<div id="app-wrap">
<div class="hero">
<h1>Satellite Patch — Retrieve + Generate</h1>
<p>
Upload up to <b>4 context patches</b> + write a prompt.
The system returns <b>Top-K similar patches</b> from the dataset and <b>new generated variants</b>
(img2img + txt2img). Built for “missing patch” exploration.
</p>
<div class="badges">
<div class="badge"><b>Embeddings:</b> DINOv2-Small</div>
<div class="badge"><b>Generator:</b> SD-Turbo</div>
<div class="badge"><b>Dataset:</b> HF Hub</div>
<div class="badge"><b>Limits:</b> 0–5 outputs</div>
</div>
</div>
</div>
""")
# Quick Starters + main layout
with gr.Row(elem_id="app-wrap"):
# Left panel (controls)
with gr.Column(scale=1, elem_classes=["panel"]):
gr.Markdown("### Quick Starters (1-click examples)")
with gr.Row(elem_id="qs-row"):
qs1 = gr.Button("LakeWater")
qs2 = gr.Button("DenseForest")
qs3 = gr.Button("ResidentialDense")
gr.Markdown("### Upload + Prompt")
files = gr.Files(
label="Upload up to 4 satellite patch images",
file_types=["image"],
file_count="multiple"
)
n_user_imgs = gr.Slider(1, 4, value=1, step=1, label="How many uploaded images to use (1–4)")
prompt = gr.Textbox(
label="Prompt (required for generation)",
value="Satellite-like RGB patch, realistic remote sensing, top-down view",
lines=2
)
gr.Markdown("### Output Controls")
k_retrieve = gr.Slider(0, 5, value=2, step=1, label="# Retrieved images (0–5)")
n_i2i = gr.Slider(0, 5, value=2, step=1, label="# img2img generated (0–5)")
n_t2i = gr.Slider(0, 5, value=2, step=1, label="# txt2img generated (0–5)")
strength_i2i = gr.Slider(0.25, 0.80, value=0.35, step=0.01, label="img2img strength (lower = closer)")
steps = gr.Slider(1, 2, value=1, step=1, label="steps (1–2)")
gen_size = gr.Radio([384, 512], value=512, label="generation size")
seed = gr.Number(value=42, precision=0, label="seed")
btn = gr.Button("Run", elem_id="run-btn")
# Right panel (outputs)
with gr.Column(scale=2, elem_classes=["panel"]):
gr.Markdown("### Results")
out_retr = gr.Gallery(label="Retrieved from Dataset", columns=5, height=260)
out_i2i = gr.Gallery(label="Generated (img2img)", columns=5, height=260)
out_t2i = gr.Gallery(label="Generated (txt2img)", columns=5, height=260)
out_txt = gr.Textbox(label="Summary", lines=8)
# Normal run
btn.click(
run_app,
inputs=[files, n_user_imgs, prompt, k_retrieve, n_i2i, n_t2i, strength_i2i, steps, gen_size, seed],
outputs=[out_retr, out_i2i, out_t2i, out_txt],
)
# Quick Starter runs (1 click)
qs1.click(
run_quickstarter,
inputs=[gr.State(QS_1_PATH), prompt, k_retrieve, n_i2i, n_t2i, strength_i2i, steps, gen_size, seed],
outputs=[out_retr, out_i2i, out_t2i, out_txt],
)
qs2.click(
run_quickstarter,
inputs=[gr.State(QS_2_PATH), prompt, k_retrieve, n_i2i, n_t2i, strength_i2i, steps, gen_size, seed],
outputs=[out_retr, out_i2i, out_t2i, out_txt],
)
qs3.click(
run_quickstarter,
inputs=[gr.State(QS_3_PATH), prompt, k_retrieve, n_i2i, n_t2i, strength_i2i, steps, gen_size, seed],
outputs=[out_retr, out_i2i, out_t2i, out_txt],
)
demo.launch() |