Spaces:
Running
on
Zero
Running
on
Zero
import gradio as gr | |
import numpy as np | |
import random | |
import torch | |
from diffusers import DiffusionPipeline | |
import spaces | |
# κΈ°λ³Έ μ€μ | |
dtype = torch.bfloat16 | |
device = "cuda" if torch.cuda.is_available() else "cpu" | |
# λͺ¨λΈ λ‘λ | |
pipe = DiffusionPipeline.from_pretrained( | |
"black-forest-labs/FLUX.1-schnell", | |
torch_dtype=dtype | |
).to(device) | |
MAX_SEED = np.iinfo(np.int32).max | |
MAX_IMAGE_SIZE = 2048 | |
# Enhanced examples with more detailed prompts and specific styling | |
EXAMPLES = [ | |
{ | |
"title": "Knowledge Tree", | |
"prompt": """A handrawn colorful mind map diagram, educational style, vibrant colors, clear hierarchy, golden ratio layout. | |
KNOWLEDGE | |
βββ ACQUISITION [Brain with Lightning ~60px] | |
β βββ READING [Open Book with Glow] | |
β βββ PRACTICE [Hands-on Tools] | |
β βββ OBSERVATION [Eye with Magnifier] | |
βββ PROCESSING [Gear Network ~50px] | |
β βββ ANALYSIS [Graph Trending Up] | |
β βββ SYNTHESIS [Puzzle Pieces] | |
βββ RETENTION [Memory Chip ~45px] | |
β βββ SHORT-TERM [Quick Flash] | |
β βββ LONG-TERM [Solid Archive] | |
βββ APPLICATION | |
βββ CREATION [Artist Palette] | |
βββ INNOVATION [Lightbulb Constellation]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Digital Transformation", | |
"prompt": """A handrawn colorful mind map diagram, tech-focused style, neon accents, circuit board patterns. | |
DIGITAL TRANSFORM | |
βββ CLOUD [Cloud with Data Rain ~55px] | |
β βββ STORAGE [Database Cluster] | |
β βββ COMPUTING [Server Array] | |
βββ AUTOMATION [Robot Arm ~50px] | |
β βββ WORKFLOWS [Flowchart] | |
β βββ AI/ML [Neural Network] | |
βββ SECURITY [Shield Matrix ~45px] | |
β βββ ENCRYPTION [Lock Code] | |
β βββ MONITORING [Radar Screen] | |
βββ INTEGRATION | |
βββ APIS [Puzzle Connect] | |
βββ MICROSERVICES [Building Blocks]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Creative Process", | |
"prompt": """A handrawn colorful mind map diagram, artistic style, watercolor effects, flowing connections. | |
CREATIVITY | |
βββ INSPIRATION [Constellation Stars ~60px] | |
β βββ NATURE [Organic Patterns] | |
β βββ CULTURE [Global Icons] | |
βββ IDEATION [Floating Bubbles ~50px] | |
β βββ BRAINSTORM [Thunder Cloud] | |
β βββ REFINEMENT [Diamond Polish] | |
βββ EXECUTION [Artist Tools ~45px] | |
β βββ TECHNIQUE [Skilled Hands] | |
β βββ MEDIUM [Palette Mix] | |
βββ PRESENTATION | |
βββ GALLERY [Frame Display] | |
βββ FEEDBACK [Echo Ripples]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Future Cities", | |
"prompt": """A handrawn colorful mind map diagram, futuristic style, holographic elements, sustainable themes. | |
SMART CITY | |
βββ MOBILITY [Hover Transport ~60px] | |
β βββ AUTONOMOUS [Self-Driving] | |
β βββ CONNECTED [Network Grid] | |
βββ ENERGY [Solar Crystal ~55px] | |
β βββ RENEWABLE [Green Power] | |
β βββ STORAGE [Battery Hub] | |
βββ LIVING [Eco Building ~50px] | |
β βββ VERTICAL [Sky Gardens] | |
β βββ COMMUNITY [People Connect] | |
βββ INFRASTRUCTURE | |
βββ AI GRID [Neural City] | |
βββ ECO SYSTEM [Nature Tech]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Health Evolution", | |
"prompt": """A handrawn colorful mind map diagram, medical style, DNA helix patterns, wellness focus. | |
HEALTH 3.0 | |
βββ PREVENTION [Shield DNA ~60px] | |
β βββ LIFESTYLE [Activity Pulse] | |
β βββ MONITORING [Health Watch] | |
βββ TREATMENT [Caduceus Tech ~55px] | |
β βββ PERSONALIZED [DNA Code] | |
β βββ REGENERATIVE [Cell Renew] | |
βββ ENHANCEMENT [Upgrade Spiral ~50px] | |
β βββ COGNITIVE [Brain Boost] | |
β βββ PHYSICAL [Body Optimize] | |
βββ INTEGRATION | |
βββ AI HEALTH [Smart Doctor] | |
βββ COMMUNITY [Global Care]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Space Exploration", | |
"prompt": """A handrawn colorful mind map diagram, cosmic style, star field background, planetary elements. | |
SPACE FRONTIER | |
βββ DISCOVERY [Telescope Array ~60px] | |
β βββ MAPPING [Star Charts] | |
β βββ ANALYSIS [Data Stream] | |
βββ TRAVEL [Rocket Launch ~55px] | |
β βββ PROPULSION [Energy Core] | |
β βββ NAVIGATION [Space Map] | |
βββ COLONIZATION [Dome City ~50px] | |
β βββ HABITATS [Life Sphere] | |
β βββ RESOURCES [Mine Extract] | |
βββ RESEARCH | |
βββ ASTROBIOLOGY [Life Search] | |
βββ PHYSICS [Space Time]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Ocean Innovation", | |
"prompt": """A handrawn colorful mind map diagram, marine style, wave patterns, aqua themes. | |
OCEAN TECH | |
βββ EXPLORATION [Deep Submersible ~60px] | |
β βββ MAPPING [Sonar Wave] | |
β βββ RESEARCH [Lab Bubble] | |
βββ CONSERVATION [Marine Life ~55px] | |
β βββ PROTECTION [Reef Shield] | |
β βββ RESTORATION [Growth Core] | |
βββ HARVESTING [Sustainable Net ~50px] | |
β βββ ENERGY [Wave Power] | |
β βββ RESOURCES [Bio Extract] | |
βββ MONITORING | |
βββ AI SYSTEMS [Smart Sensors] | |
βββ ECOLOGY [Life Web]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Quantum Computing", | |
"prompt": """A handrawn colorful mind map diagram, quantum style, wave-particle duality, matrix patterns. | |
QUANTUM TECH | |
βββ COMPUTATION [Qubit Matrix ~60px] | |
β βββ PROCESSING [Wave Function] | |
β βββ ALGORITHMS [Code Quantum] | |
βββ APPLICATIONS [Use Cases ~55px] | |
β βββ SIMULATION [Model World] | |
β βββ OPTIMIZATION [Peak Find] | |
βββ INFRASTRUCTURE [Q-Hardware ~50px] | |
β βββ CONTROL [Pulse Shape] | |
β βββ COOLING [Zero Point] | |
βββ DEVELOPMENT | |
βββ SOFTWARE [Q-Code Web] | |
βββ INTEGRATION [Classical Bridge]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "Bio Engineering", | |
"prompt": """A handrawn colorful mind map diagram, biological style, DNA patterns, organic flow. | |
BIOTECH | |
βββ GENETICS [DNA Helix ~60px] | |
β βββ EDITING [CRISPR Tool] | |
β βββ SYNTHESIS [Gene Build] | |
βββ APPLICATIONS [Lab Array ~55px] | |
β βββ MEDICINE [Heal Cell] | |
β βββ AGRICULTURE [Grow Plus] | |
βββ PLATFORMS [Bio Factory ~50px] | |
β βββ SENSORS [Live Detect] | |
β βββ PROCESSORS [Cell Compute] | |
βββ INTEGRATION | |
βββ AI BIOLOGY [Smart Life] | |
βββ ECOSYSTEM [Nature Net]""", | |
"width": 1024, | |
"height": 1024 | |
}, | |
{ | |
"title": "AI Evolution", | |
"prompt": """A handrawn colorful mind map diagram, neural network style, digital patterns, intelligence flow. | |
AI FUTURE | |
βββ COGNITION [Brain Network ~60px] | |
β βββ LEARNING [Growth Path] | |
β βββ REASONING [Logic Tree] | |
βββ PERCEPTION [Sensor Array ~55px] | |
β βββ VISION [Eye Matrix] | |
β βββ LANGUAGE [Word Web] | |
βββ INTERACTION [Connect Hub ~50px] | |
β βββ HUMAN [Bridge Link] | |
β βββ MACHINE [Code Path] | |
βββ EVOLUTION | |
βββ CONSCIOUSNESS [Mind Spark] | |
βββ CREATIVITY [Art Core]""", | |
"width": 1024, | |
"height": 1024 | |
} | |
] | |
# Convert examples to Gradio format | |
GRADIO_EXAMPLES = [ | |
[example["prompt"], example["width"], example["height"]] | |
for example in EXAMPLES | |
] | |
# μ΄ λ°μ½λ μ΄ν°λ₯Ό λ€μ μΆκ° | |
def infer(prompt, seed=42, randomize_seed=False, width=1024, height=1024, num_inference_steps=4, progress=gr.Progress(track_tqdm=True)): | |
if randomize_seed: | |
seed = random.randint(0, MAX_SEED) | |
generator = torch.Generator().manual_seed(seed) | |
image = pipe( | |
prompt=prompt, | |
width=width, | |
height=height, | |
num_inference_steps=num_inference_steps, | |
generator=generator, | |
guidance_scale=0.0 | |
).images[0] | |
return image, seed | |
# CSS μ€νμΌ μμ | |
css = """ | |
.container { | |
display: flex; | |
flex-direction: row; | |
height: 100%; | |
} | |
.input-column { | |
flex: 1; | |
padding: 20px; | |
border-right: 2px solid #eee; | |
max-width: 800px; /* μ¦κ°λ μ΅λ λλΉ */ | |
} | |
.examples-column { | |
flex: 1; | |
padding: 20px; | |
overflow-y: auto; | |
background: #f7f7f7; | |
} | |
.title { | |
text-align: center; | |
color: #2a2a2a; | |
padding: 20px; | |
font-size: 2.5em; | |
font-weight: bold; | |
background: linear-gradient(90deg, #f0f0f0 0%, #ffffff 100%); | |
border-bottom: 3px solid #ddd; | |
margin-bottom: 30px; | |
} | |
.subtitle { | |
text-align: center; | |
color: #666; | |
margin-bottom: 30px; | |
} | |
.input-box { | |
background: white; | |
padding: 20px; | |
border-radius: 10px; | |
box-shadow: 0 2px 10px rgba(0,0,0,0.1); | |
margin-bottom: 20px; | |
width: 100%; /* μ 체 λλΉ μ¬μ© */ | |
} | |
/* ν μ€νΈ μ λ ₯ λ°μ€ μ€νμΌ */ | |
.input-box textarea { | |
width: 100% !important; /* κ°μ λλΉ 100% */ | |
min-width: 600px !important; /* μ΅μ λλΉ μ€μ */ | |
font-size: 14px !important; | |
line-height: 1.5 !important; | |
padding: 12px !important; | |
} | |
.example-card { | |
background: white; | |
padding: 15px; | |
margin: 10px 0; | |
border-radius: 8px; | |
box-shadow: 0 2px 5px rgba(0,0,0,0.05); | |
} | |
.example-title { | |
font-weight: bold; | |
color: #2a2a2a; | |
margin-bottom: 10px; | |
} | |
/* λ μ΄μμ μ‘°μ */ | |
.contain { | |
max-width: 1400px !important; /* μ 체 컨ν μ΄λ λλΉ μ¦κ° */ | |
margin: 0 auto !important; | |
} | |
/* μ λ ₯ μμ μ‘°μ */ | |
.input-area { | |
flex: 2 !important; /* μ λ ₯ μμ λΉμ¨ μ¦κ° */ | |
} | |
/* μμ μμ μ‘°μ */ | |
.examples-area { | |
flex: 1 !important; | |
} | |
""" | |
# Gradio μΈν°νμ΄μ€ μμ | |
with gr.Blocks(css=css) as demo: | |
gr.Markdown( | |
""" | |
<div class="title">FLUX Mindmap Generator</div> | |
<div class="subtitle">Create beautiful hand-drawn style diagrams using FLUX AI</div> | |
""") | |
with gr.Row(equal_height=True) as main_row: | |
# μΌμͺ½ μ λ ₯ μ»¬λΌ | |
with gr.Column(elem_id="input-column", scale=2): # scale κ° μ¦κ° | |
with gr.Group(elem_classes="input-box"): | |
prompt = gr.Text( | |
label="Diagram Prompt", | |
placeholder="Enter your diagram structure...", | |
lines=10, # μ€ μ μ¦κ° | |
elem_classes="prompt-input" # CSS ν΄λμ€ μΆκ° | |
) | |
run_button = gr.Button("Generate Diagram", variant="primary") | |
result = gr.Image(label="Generated Diagram") | |
with gr.Accordion("Advanced Settings", open=False): | |
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=1024, | |
) | |
height = gr.Slider( | |
label="Height", | |
minimum=256, | |
maximum=MAX_IMAGE_SIZE, | |
step=32, | |
value=1024, | |
) | |
num_inference_steps = gr.Slider( | |
label="Number of inference steps", | |
minimum=1, | |
maximum=50, | |
step=1, | |
value=4, | |
) | |
# μ€λ₯Έμͺ½ μμ μ»¬λΌ | |
with gr.Column(elem_id="examples-column", scale=1): | |
gr.Markdown("### Example Diagrams") | |
for example in EXAMPLES: | |
with gr.Group(elem_classes="example-card"): | |
gr.Markdown(f"#### {example['title']}") | |
gr.Markdown(f"```\n{example['prompt']}\n```") | |
def create_example_handler(ex): | |
def handler(): | |
return { | |
prompt: ex["prompt"], | |
width: ex["width"], | |
height: ex["height"] | |
} | |
return handler | |
gr.Button("Use This Example", size="sm").click( | |
fn=create_example_handler(example), | |
outputs=[prompt, width, height] | |
) | |
gr.on( | |
triggers=[run_button.click, prompt.submit], | |
fn=infer, | |
inputs=[prompt, seed, randomize_seed, width, height, num_inference_steps], | |
outputs=[result, seed] | |
) | |
# μ± μ€ν | |
if __name__ == "__main__": | |
demo.queue() | |
demo.launch( | |
server_name="0.0.0.0", | |
server_port=7860, | |
share=False, | |
show_error=True, | |
debug=True | |
) |