Spaces:
Sleeping
Sleeping
File size: 11,589 Bytes
9d202bc 09a82fa 9d202bc d5f9570 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc acd67b4 09a82fa 9d202bc 09a82fa 9d202bc 7cef76b 9d202bc 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 3d8b4ef 7cef76b 26e0ae8 7cef76b 3d8b4ef 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 3d8b4ef 7cef76b 3d8b4ef 26e0ae8 7cef76b 3d8b4ef 7cef76b 3d8b4ef 26e0ae8 7cef76b 26e0ae8 3d8b4ef 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 3d8b4ef 26e0ae8 7cef76b 3d8b4ef 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 3d8b4ef 26e0ae8 7cef76b 3d8b4ef 26e0ae8 7cef76b 26e0ae8 09a82fa 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 3d8b4ef 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 3d8b4ef 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 7cef76b 26e0ae8 9d202bc 7cef76b 9d202bc 7cef76b 09a82fa 9d202bc 7cef76b 26e0ae8 9d202bc 7cef76b 26e0ae8 9d202bc 7cef76b 9d202bc 7cef76b 9d202bc 7cef76b 9d202bc 7cef76b 9d202bc 7cef76b 26e0ae8 9d202bc 7cef76b 9d202bc 7cef76b 9d202bc 7cef76b 9d202bc 09a82fa 9d202bc 7cef76b 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc 09a82fa 9d202bc 26e0ae8 7cef76b 26e0ae8 9d202bc 26e0ae8 |
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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 |
import gradio as gr
import numpy as np
import random
# import spaces #[uncomment to use ZeroGPU]
from diffusers import DiffusionPipeline, AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
model_repo_id = "stabilityai/stable-diffusion-xl-base-1.0"
if torch.cuda.is_available():
torch_dtype = torch.float16
else:
torch_dtype = torch.float32
# Load pipeline with safety checker disabled
pipe = AutoPipelineForText2Image.from_pretrained(
model_repo_id,
torch_dtype=torch_dtype,
safety_checker=None,
requires_safety_checker=False
)
pipe = pipe.to(device)
MAX_SEED = np.iinfo(np.int32).max
MAX_IMAGE_SIZE = 1024
# @spaces.GPU #[uncomment to use ZeroGPU]
def infer(
prompt,
negative_prompt,
seed,
randomize_seed,
width,
height,
guidance_scale,
num_inference_steps,
progress=gr.Progress(track_tqdm=True),
):
if randomize_seed:
seed = random.randint(0, MAX_SEED)
generator = torch.Generator(device=device).manual_seed(seed)
# SDXL-Turbo works best with these settings:
# - guidance_scale should be 0.0 (it's trained without guidance)
# - num_inference_steps should be 1-4 for best results
image = pipe(
prompt=prompt,
negative_prompt=negative_prompt,
guidance_scale=4, # SDXL-Turbo requires 0.0
num_inference_steps=max(1, min(4, num_inference_steps)), # Clamp to 1-4
width=width,
height=height,
generator=generator,
).images[0]
return image, seed
examples = [
"Astronaut in a jungle, cold color palette, muted colors, detailed, 8k",
"An astronaut riding a green horse",
"A delicious ceviche cheesecake slice",
"Beautiful landscape with mountains and lake at sunset",
]
css = """
/* ChatGPT-inspired Dark Theme */
:root {
--bg-primary: #0D0D0D;
--bg-secondary: #171717;
--bg-tertiary: #212121;
--text-primary: #ECECEC;
--text-secondary: #9B9B9B;
--accent: #10A37F;
--accent-hover: #0E8C6F;
--border-color: #2D2D2D;
--input-bg: #2D2D2D;
}
/* Global container */
.gradio-container {
background: var(--bg-primary) !important;
font-family: 'Söhne', 'Segoe UI', 'Helvetica Neue', sans-serif;
color: var(--text-primary) !important;
}
/* Main content area */
#col-container {
margin: 0 auto;
max-width: 900px;
padding: 40px 20px;
}
/* Title styling */
.gradio-container h1 {
color: var(--text-primary) !important;
font-size: 2rem;
font-weight: 600;
margin-bottom: 30px;
text-align: center;
letter-spacing: -0.5px;
}
/* All text and labels */
.gradio-container label,
.gradio-container .label,
.gradio-container p {
color: var(--text-primary) !important;
font-size: 14px;
font-weight: 500;
margin-bottom: 8px;
}
/* Input fields */
.gradio-container .gradio-textbox input,
.gradio-container .gradio-textbox textarea,
.gradio-container input[type="text"] {
background: var(--input-bg) !important;
border: 1px solid var(--border-color) !important;
border-radius: 8px !important;
color: var(--text-primary) !important;
padding: 12px 16px !important;
font-size: 15px;
transition: all 0.2s ease;
}
.gradio-container .gradio-textbox input:focus,
.gradio-container .gradio-textbox textarea:focus {
outline: none !important;
border-color: var(--accent) !important;
box-shadow: 0 0 0 3px rgba(16, 163, 127, 0.1) !important;
}
.gradio-container .gradio-textbox input::placeholder,
.gradio-container .gradio-textbox textarea::placeholder {
color: var(--text-secondary) !important;
}
/* Buttons */
.gradio-container button,
.gradio-container .gradio-button {
background: var(--accent) !important;
border: none !important;
border-radius: 8px !important;
color: white !important;
font-weight: 500 !important;
font-size: 14px !important;
padding: 12px 24px !important;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: none !important;
}
.gradio-container button:hover,
.gradio-container .gradio-button:hover {
background: var(--accent-hover) !important;
transform: translateY(-1px);
}
.gradio-container button:active {
transform: translateY(0);
}
/* Secondary buttons (examples) */
.gradio-container .gradio-examples button {
background: var(--bg-tertiary) !important;
border: 1px solid var(--border-color) !important;
color: var(--text-primary) !important;
}
.gradio-container .gradio-examples button:hover {
background: var(--input-bg) !important;
border-color: var(--accent) !important;
}
/* Image container */
.gradio-container .gradio-image {
background: var(--bg-secondary) !important;
border: 1px solid var(--border-color) !important;
border-radius: 12px !important;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}
/* Accordion */
.gradio-container .gradio-accordion {
background: var(--bg-secondary) !important;
border: 1px solid var(--border-color) !important;
border-radius: 10px !important;
margin: 20px 0;
}
.gradio-container .gradio-accordion summary {
background: transparent !important;
color: var(--text-primary) !important;
padding: 16px 20px !important;
font-weight: 500;
cursor: pointer;
border: none !important;
}
.gradio-container .gradio-accordion[open] summary {
border-bottom: 1px solid var(--border-color) !important;
}
/* Sliders */
.gradio-container .gradio-slider {
background: transparent !important;
}
.gradio-container .gradio-slider input[type="range"] {
-webkit-appearance: none;
appearance: none;
height: 4px;
border-radius: 2px;
background: var(--input-bg) !important;
outline: none;
}
.gradio-container .gradio-slider input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--accent) !important;
cursor: pointer;
transition: all 0.2s ease;
}
.gradio-container .gradio-slider input[type="range"]::-webkit-slider-thumb:hover {
transform: scale(1.1);
box-shadow: 0 0 0 4px rgba(16, 163, 127, 0.2);
}
.gradio-container .gradio-slider input[type="range"]::-moz-range-thumb {
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--accent) !important;
border: none;
cursor: pointer;
}
/* Slider number display */
.gradio-container .gradio-slider input[type="number"] {
background: var(--input-bg) !important;
border: 1px solid var(--border-color) !important;
color: var(--text-primary) !important;
border-radius: 6px !important;
}
/* Checkbox */
.gradio-container .gradio-checkbox input[type="checkbox"] {
width: 18px;
height: 18px;
border-radius: 4px;
border: 2px solid var(--border-color) !important;
background: var(--input-bg) !important;
cursor: pointer;
}
.gradio-container .gradio-checkbox input[type="checkbox"]:checked {
background: var(--accent) !important;
border-color: var(--accent) !important;
}
.gradio-container .gradio-checkbox label {
color: var(--text-primary) !important;
}
/* Examples section */
.gradio-container .gradio-examples {
background: var(--bg-secondary) !important;
border: 1px solid var(--border-color) !important;
border-radius: 10px;
padding: 20px;
margin: 20px;
}
.gradio-container .gradio-examples .label {
color: var(--text-primary) !important;
font-weight: 500;
margin-bottom: 12px;
}
/* Rows */
.gradio-container .gradio-row {
gap: 16px;
}
/* Progress bar */
.gradio-container .gradio-progress {
background: var(--bg-secondary) !important;
border-radius: 8px;
overflow: hidden;
}
.gradio-container .gradio-progress-bar {
background: var(--accent) !important;
}
/* Remove default Gradio backgrounds */
.gradio-container .gradio-box,
.gradio-container .gradio-form,
.gradio-container .gradio-group {
background: transparent !important;
border: none !important;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
background: var(--input-bg);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--border-color);
}
/* Responsive design */
@media (max-width: 768px) {
#col-container {
padding: 20px 15px;
}
.gradio-container h1 {
font-size: 1.5rem;
}
.gradio-container .gradio-row {
flex-direction: column;
}
}
/* Smooth animations */
* {
transition: background-color 0.2s ease, border-color 0.2s ease;
}
"""
with gr.Blocks(css=css, title="AI Image Generator", theme=gr.themes.Base()) as demo:
with gr.Column(elem_id="col-container"):
gr.Markdown("# AI Image Generator")
gr.Markdown("*Powered by SDXL-Turbo - Optimized for fast generation (1-4 steps)*")
with gr.Row():
prompt = gr.Text(
label="Prompt",
show_label=True,
max_lines=1,
placeholder="Describe your image...",
container=True,
scale=4
)
run_button = gr.Button("Generate", scale=1, variant="primary")
result = gr.Image(label="Generated Image", show_label=True, height=400)
with gr.Accordion("Advanced Settings", open=False):
negative_prompt = gr.Text(
label="Negative Prompt",
max_lines=1,
placeholder="What to exclude from the image...",
visible=True,
)
seed = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=0,
)
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
with gr.Row():
width = gr.Slider(
label="Width",
minimum=256,
maximum=MAX_IMAGE_SIZE,
step=32,
value=512,
)
height = gr.Slider(
label="Height",
minimum=256,
maximum=MAX_IMAGE_SIZE,
step=32,
value=512,
)
with gr.Row():
guidance_scale = gr.Slider(
label="Guidance Scale (Ignored - SDXL-Turbo uses 0.0)",
minimum=0.0,
maximum=10.0,
step=0.1,
value=0.0,
interactive=False,
)
num_inference_steps = gr.Slider(
label="Inference Steps (1-4 recommended)",
minimum=1,
maximum=10,
step=1,
value=2,
)
gr.Examples(
examples=examples,
inputs=[prompt],
label="Example Prompts"
)
gr.on(
triggers=[run_button.click, prompt.submit],
fn=infer,
inputs=[
prompt,
negative_prompt,
seed,
randomize_seed,
width,
height,
guidance_scale,
num_inference_steps,
],
outputs=[result, seed],
)
if __name__ == "__main__":
demo.launch(share=True) |