Spaces:
Sleeping
Sleeping
File size: 12,904 Bytes
eb186a1 52afb59 eb186a1 |
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 |
import gradio as gr
import torch
from diffusers import (
StableDiffusionPipeline,
DPMSolverMultistepScheduler,
EulerAncestralDiscreteScheduler
)
from PIL import Image
import random
print("π¨ Initializing Stable Diffusion pipeline...")
# Configurazione
MODEL_ID = "runwayml/stable-diffusion-v1-5"
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
USE_SAFETENSORS = True
# Carica pipeline
print(f"π¦ Loading model: {MODEL_ID}")
pipe = StableDiffusionPipeline.from_pretrained(
MODEL_ID,
torch_dtype=torch.float16 if DEVICE == "cuda" else torch.float32,
use_safetensors=USE_SAFETENSORS,
safety_checker=None, # Disabilita per velocitΓ (opzionale)
)
# Scheduler ottimizzato
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
pipe.to(DEVICE)
# Ottimizzazioni
if DEVICE == "cuda":
pipe.enable_model_cpu_offload()
pipe.enable_vae_slicing()
print("β
GPU optimizations enabled")
print(f"β
Pipeline loaded on {DEVICE}")
def generate_image(
prompt,
negative_prompt="",
width=512,
height=512,
num_inference_steps=25,
guidance_scale=7.5,
num_images=1,
seed=-1,
scheduler_type="DPM++ 2M",
progress=gr.Progress()
):
"""
Genera immagini da prompt testuale
Args:
prompt: Descrizione dell'immagine da generare
negative_prompt: Cosa evitare
width: Larghezza immagine (multiplo di 8)
height: Altezza immagine (multiplo di 8)
num_inference_steps: Step di qualitΓ (15-50)
guidance_scale: Aderenza al prompt (5-15)
num_images: Numero di immagini da generare (1-4)
seed: Random seed (-1 per random)
scheduler_type: Tipo di scheduler
progress: Progress tracker
"""
if not prompt or len(prompt.strip()) == 0:
return None, "β Inserisci un prompt!"
try:
progress(0, desc="π¨ Initializing generation...")
# Imposta seed
if seed == -1:
seed = random.randint(0, 2147483647)
generator = torch.Generator(device=DEVICE).manual_seed(seed)
print(f"π Prompt: {prompt}")
print(f"π² Seed: {seed}")
print(f"π Size: {width}x{height}")
print(f"π¨ Steps: {num_inference_steps}")
# Cambia scheduler se richiesto
if scheduler_type == "Euler a":
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(
pipe.scheduler.config
)
elif scheduler_type == "DPM++ 2M":
pipe.scheduler = DPMSolverMultistepScheduler.from_config(
pipe.scheduler.config
)
progress(0.2, desc="πΌοΈ Generating image...")
# Genera immagini
with torch.no_grad():
result = pipe(
prompt=prompt,
negative_prompt=negative_prompt if negative_prompt else None,
width=width,
height=height,
num_inference_steps=num_inference_steps,
guidance_scale=guidance_scale,
num_images_per_prompt=num_images,
generator=generator,
)
images = result.images
progress(1.0, desc="β
Complete!")
# Info
info = f"""
β
**Immagine generata con successo!**
π **Dettagli:**
- Prompt: "{prompt}"
- Negative: "{negative_prompt if negative_prompt else 'None'}"
- Risoluzione: {width}x{height}
- Steps: {num_inference_steps}
- Guidance Scale: {guidance_scale}
- Seed: {seed}
- Scheduler: {scheduler_type}
- Device: {DEVICE.upper()}
- Immagini generate: {len(images)}
π‘ **Tip:** Salva il seed per ricreare immagini simili!
"""
# Restituisci prima immagine + gallery
return images[0], images if len(images) > 1 else None, info
except Exception as e:
error_msg = f"""
β **Errore durante la generazione:**
{str(e)}
π‘ **Possibili soluzioni:**
- Riduci risoluzione (512x512 consigliato)
- Riduci inference steps (20-25)
- Semplifica il prompt
- Verifica che width e height siano multipli di 8
"""
print(f"Error: {e}")
import traceback
traceback.print_exc()
return None, None, error_msg
# Esempi predefiniti
EXAMPLES = [
[
"a beautiful landscape with mountains and a lake at sunset, highly detailed, 4k",
"blurry, low quality, distorted, ugly",
512, 512, 25, 7.5, 1, 42, "DPM++ 2M"
],
[
"portrait of a cute cat wearing a wizard hat, digital art, detailed fur",
"low quality, blurry",
512, 512, 30, 8.0, 1, 123, "DPM++ 2M"
],
[
"futuristic city with flying cars, neon lights, cyberpunk style, detailed",
"blurry, low quality",
768, 512, 25, 7.5, 1, 456, "DPM++ 2M"
],
[
"medieval castle on a hill, dramatic lighting, fantasy art, intricate details",
"modern, contemporary",
512, 768, 30, 7.5, 1, 789, "Euler a"
],
]
# Interfaccia Gradio
with gr.Blocks(
title="π¨ Stable Diffusion Generator",
theme=gr.themes.Soft(
primary_hue="blue",
secondary_hue="cyan"
),
css="""
.gradio-container {max-width: 1400px !important}
"""
) as demo:
gr.Markdown("""
# π¨ Stable Diffusion Image Generator
### Create Stunning AI Art from Text Descriptions
Powered by **Stable Diffusion 2.1** - State-of-the-art text-to-image generation
π‘ **Tips for better results:**
- Be specific and descriptive
- Mention style, lighting, and details
- Use negative prompts to avoid unwanted elements
- Experiment with different seeds and settings
""")
with gr.Row():
# Colonna sinistra - Input
with gr.Column(scale=1):
prompt_input = gr.Textbox(
label="β¨ Prompt (Describe what you want to create)",
placeholder="Example: a serene japanese garden with cherry blossoms, koi pond, soft lighting, highly detailed, 4k",
lines=4,
value="a beautiful landscape with mountains and a lake at sunset, highly detailed, 4k"
)
negative_prompt_input = gr.Textbox(
label="π« Negative Prompt (What to avoid)",
placeholder="Example: blurry, low quality, distorted, ugly, deformed",
lines=2,
value="blurry, low quality, distorted, ugly"
)
with gr.Row():
width = gr.Slider(
minimum=256,
maximum=1024,
value=512,
step=64,
label="π Width",
info="Must be multiple of 64"
)
height = gr.Slider(
minimum=256,
maximum=1024,
value=512,
step=64,
label="π Height",
info="Must be multiple of 64"
)
with gr.Accordion("βοΈ Advanced Settings", open=False):
num_inference_steps = gr.Slider(
minimum=10,
maximum=50,
value=25,
step=5,
label="π¨ Inference Steps",
info="More = better quality but slower"
)
guidance_scale = gr.Slider(
minimum=1.0,
maximum=20.0,
value=7.5,
step=0.5,
label="π― Guidance Scale",
info="How closely to follow the prompt (7-10 recommended)"
)
num_images = gr.Slider(
minimum=1,
maximum=4,
value=1,
step=1,
label="πΌοΈ Number of Images",
info="Generate multiple variations"
)
scheduler_type = gr.Dropdown(
choices=["DPM++ 2M", "Euler a"],
value="DPM++ 2M",
label="π§ Scheduler",
info="Different sampling methods"
)
seed = gr.Number(
value=-1,
label="π² Seed (-1 for random)",
info="Use same seed for consistent results",
precision=0
)
generate_btn = gr.Button(
"π¨ Generate Image",
variant="primary",
size="lg"
)
gr.Markdown("""
### π Performance Guide
**CPU (Free tier):**
- Resolution: 512x512
- Steps: 15-20
- Time: ~2-5 min
**GPU T4 ($0.60/h):**
- Resolution: 768x768
- Steps: 25-35
- Time: ~10-30 sec
""")
# Colonna destra - Output
with gr.Column(scale=1):
image_output = gr.Image(
label="πΌοΈ Generated Image",
type="pil",
height=512
)
gallery_output = gr.Gallery(
label="π¨ Image Variations",
columns=2,
rows=2,
height=400,
visible=False
)
info_output = gr.Markdown(
value="π Write a prompt and click 'Generate' to create your image!",
label="βΉοΈ Generation Info"
)
# Sezione esempi
gr.Markdown("### π¨ Example Prompts - Click to try")
gr.Examples(
examples=EXAMPLES,
inputs=[
prompt_input,
negative_prompt_input,
width,
height,
num_inference_steps,
guidance_scale,
num_images,
seed,
scheduler_type
],
outputs=[image_output, gallery_output, info_output],
fn=generate_image,
cache_examples=False,
)
# Event handler
generate_btn.click(
fn=generate_image,
inputs=[
prompt_input,
negative_prompt_input,
width,
height,
num_inference_steps,
guidance_scale,
num_images,
seed,
scheduler_type
],
outputs=[image_output, gallery_output, info_output],
)
# Footer
gr.Markdown("""
---
### π Prompt Engineering Guide
**Structure:** `[Subject] + [Style] + [Lighting] + [Details] + [Quality]`
**Good Prompt Examples:**
- "a serene japanese garden with cherry blossoms, koi pond, soft golden hour lighting, highly detailed, 4k, photorealistic"
- "portrait of an astronaut floating in space, cinematic lighting, digital art, trending on artstation"
- "fantasy castle on a floating island, dramatic storm clouds, epic scale, concept art, octane render"
**Style Keywords:**
- photorealistic, digital art, oil painting, watercolor, anime, concept art
- cinematic, dramatic, ethereal, vibrant, muted, pastel
**Quality Modifiers:**
- highly detailed, 4k, 8k, ultra detailed, intricate, sharp focus
- trending on artstation, award winning, masterpiece
**Common Negative Prompts:**
- blurry, low quality, distorted, ugly, deformed, duplicate
- bad anatomy, poorly drawn, amateur, watermark, signature
---
### π§ Technical Details
- **Model**: Stable Diffusion 2.1 (768px base model)
- **Scheduler**: DPM++ 2M Karras / Euler Ancestral
- **Device**: {device}
- **VRAM**: Optimized with CPU offload and VAE slicing
### π‘ Tips
- **Square images** (512x512) are fastest
- **Portrait** (512x768) or **Landscape** (768x512) for specific ratios
- Start with **guidance scale 7-8**, adjust if needed
- Use **20-25 steps** for good quality
- Save your **seed** to recreate variations
---
**Made with β€οΈ using HuggingFace Diffusers & Stable Diffusion**
""".replace("{device}", DEVICE.upper()))
# Launch
if __name__ == "__main__":
demo.queue(max_size=20)
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
)
|