Spaces:
ginigen
/
Running on Zero

ginipick commited on
Commit
bb174ab
ยท
verified ยท
1 Parent(s): b4169e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +165 -204
app.py CHANGED
@@ -9,7 +9,7 @@ import spaces
9
  dtype = torch.bfloat16
10
  device = "cuda" if torch.cuda.is_available() else "cpu"
11
 
12
- # ๋ชจ๋ธ ๋กœ๋“œ
13
  pipe = DiffusionPipeline.from_pretrained(
14
  "black-forest-labs/FLUX.1-schnell",
15
  torch_dtype=dtype
@@ -18,236 +18,197 @@ pipe = DiffusionPipeline.from_pretrained(
18
  MAX_SEED = np.iinfo(np.int32).max
19
  MAX_IMAGE_SIZE = 2048
20
 
21
- # ์ œํ’ˆ ๋””์ž์ธ ์ปจ์…‰ ์˜ˆ์‹œ
22
- EXAMPLES = [
23
- {
24
- "title": "Smart Coffee Machine",
25
- "prompt": """A sleek industrial design concept for a coffee machine:
26
- - Curved metallic body with minimal bezel
27
- - Touchscreen panel for settings
28
- - Modern matte black finish
29
- - Hand-drawn concept sketch style""",
30
- "width": 1024,
31
- "height": 1024
32
- },
33
- {
34
- "title": "AI Speaker",
35
- "prompt": """A futuristic AI speaker concept:
36
- - Cylindrical shape with LED ring near top
37
- - Voice assistant concept, floating panel controls
38
- - Smooth glossy finish with minimal seams
39
- - Techy, modern look in grayscale""",
40
- "width": 1024,
41
- "height": 1024
42
- },
43
- {
44
- "title": "Next-Gen Smartphone",
45
- "prompt": """A wireframe-style concept for a bezel-less smartphone:
46
- - Edge-to-edge display
47
- - Integrated camera under screen
48
- - Metallic frame, minimal ports
49
- - Sleek, glossy black design""",
50
- "width": 1024,
51
- "height": 1024
52
- },
53
- {
54
- "title": "Futuristic Electric Bicycle",
55
- "prompt": """An industrial design sketch of an electric bike:
56
- - Lightweight carbon frame, aerodynamic lines
57
- - Integrated battery, sleek display on handlebars
58
- - Neon color highlights on wheels
59
- - High-tech vibe, minimal clutter""",
60
- "width": 1024,
61
- "height": 1024
62
- },
63
- {
64
- "title": "Concept Car Interior",
65
- "prompt": """A luxurious and futuristic car interior concept:
66
- - Wrap-around digital dashboard
67
- - Minimalistic steering control, seat controls on touchscreen
68
- - Ambient LED accent lights
69
- - Soft leather seats, bright accent stitching""",
70
- "width": 1024,
71
- "height": 1024
72
- }
73
- ]
74
-
75
- # Convert examples to Gradio format (if needed)
76
- GRADIO_EXAMPLES = [
77
- [example["prompt"], example["width"], example["height"]]
78
- for example in EXAMPLES
79
- ]
80
-
81
  @spaces.GPU()
82
- def infer(prompt, seed=42, randomize_seed=False, width=1024, height=1024, num_inference_steps=4, progress=gr.Progress(track_tqdm=True)):
83
  if randomize_seed:
84
  seed = random.randint(0, MAX_SEED)
85
- generator = torch.Generator().manual_seed(seed)
86
  image = pipe(
87
  prompt=prompt,
88
  width=width,
89
  height=height,
90
- num_inference_steps=num_inference_steps,
91
  generator=generator,
92
- guidance_scale=0.0
93
  ).images[0]
94
  return image, seed
95
 
96
- # CSS ์Šคํƒ€์ผ (๊ธฐ์กด ๊ตฌ์กฐ ์œ ์ง€)
97
  css = """
98
- .container {
99
- display: flex;
100
- flex-direction: row;
101
- height: 100%;
102
- }
103
- .input-column {
104
- flex: 1;
105
- padding: 20px;
106
- border-right: 2px solid #eee;
107
- max-width: 800px;
108
  }
109
- .examples-column {
110
- flex: 1;
111
- padding: 20px;
112
- overflow-y: auto;
113
- background: #f7f7f7;
114
- }
115
- .title {
116
- text-align: center;
117
- color: #2a2a2a;
118
- padding: 20px;
119
- font-size: 2.5em;
120
- font-weight: bold;
121
- background: linear-gradient(90deg, #f0f0f0 0%, #ffffff 100%);
122
- border-bottom: 3px solid #ddd;
123
- margin-bottom: 30px;
124
  }
125
- .subtitle {
126
- text-align: center;
127
- color: #666;
128
- margin-bottom: 30px;
129
  }
130
- .input-box {
131
- background: white;
132
- padding: 20px;
133
  border-radius: 10px;
134
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
135
- margin-bottom: 20px;
136
- width: 100%;
137
- }
138
- .input-box textarea {
139
- width: 100% !important;
140
- min-width: 600px !important;
141
- font-size: 14px !important;
142
- line-height: 1.5 !important;
143
- padding: 12px !important;
144
- }
145
- .example-card {
146
- background: white;
147
- padding: 15px;
148
- margin: 10px 0;
149
- border-radius: 8px;
150
- box-shadow: 0 2px 5px rgba(0,0,0,0.05);
151
  }
152
- .example-title {
 
 
 
 
 
153
  font-weight: bold;
154
- color: #2a2a2a;
155
- margin-bottom: 10px;
156
- }
157
- .contain {
158
- max-width: 1400px !important;
159
- margin: 0 auto !important;
160
- }
161
- .input-area {
162
- flex: 2 !important;
163
  }
164
- .examples-area {
165
- flex: 1 !important;
166
  }
167
  """
168
 
169
- with gr.Blocks(css=css) as demo:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  gr.Markdown(
171
  """
172
- <div class="title">GINI Design</div>
173
- <div class="subtitle">Generate sleek industrial/product design concepts with FLUX AI</div>
174
- """)
175
-
176
- with gr.Row(equal_height=True):
177
- # ์™ผ์ชฝ ์ž…๋ ฅ ์ปฌ๋Ÿผ
178
- with gr.Column(elem_id="input-column", scale=2):
179
- with gr.Group(elem_classes="input-box"):
180
- prompt = gr.Text(
181
- label="Design Prompt",
182
- placeholder="Enter your product design concept details...",
183
- lines=10,
184
- elem_classes="prompt-input"
185
- )
186
- run_button = gr.Button("Generate Design", variant="primary")
187
- result = gr.Image(label="Generated Design")
188
-
189
- with gr.Accordion("Advanced Settings", open=False):
190
- seed = gr.Slider(
191
- label="Seed",
192
- minimum=0,
193
- maximum=MAX_SEED,
194
- step=1,
195
- value=0,
196
- )
197
- randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
 
 
 
198
 
199
- with gr.Row():
200
- width = gr.Slider(
201
- label="Width",
202
- minimum=256,
203
- maximum=MAX_IMAGE_SIZE,
204
- step=32,
205
- value=1024,
206
- )
207
- height = gr.Slider(
208
- label="Height",
209
- minimum=256,
210
- maximum=MAX_IMAGE_SIZE,
211
- step=32,
212
- value=1024,
213
- )
214
 
215
- num_inference_steps = gr.Slider(
216
- label="Number of inference steps",
217
- minimum=1,
218
- maximum=50,
219
- step=1,
220
- value=4,
221
- )
 
 
 
 
 
 
 
 
 
 
222
 
223
- # ์˜ค๋ฅธ์ชฝ ์˜ˆ์ œ ์ปฌ๋Ÿผ
224
- with gr.Column(elem_id="examples-column", scale=1):
225
- gr.Markdown("### Example Product Designs")
226
- for example in EXAMPLES:
227
- with gr.Group(elem_classes="example-card"):
228
- gr.Markdown(f"#### {example['title']}")
229
- gr.Markdown(f"```\n{example['prompt']}\n```")
230
-
231
- def create_example_handler(ex):
232
- def handler():
233
- return {
234
- prompt: ex["prompt"],
235
- width: ex["width"],
236
- height: ex["height"]
237
- }
238
- return handler
239
-
240
- gr.Button("Use This Example", size="sm").click(
241
- fn=create_example_handler(example),
242
- outputs=[prompt, width, height]
243
- )
244
-
245
- # ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ (๋ฒ„ํŠผ ํด๋ฆญ & ํ…์ŠคํŠธ๋ฐ•์Šค ์—”ํ„ฐ)
246
- gr.on(
247
- triggers=[run_button.click, prompt.submit],
248
- fn=infer,
249
- inputs=[prompt, seed, randomize_seed, width, height, num_inference_steps],
250
- outputs=[result, seed]
 
 
 
 
 
 
 
 
 
 
 
251
  )
252
 
253
  if __name__ == "__main__":
 
9
  dtype = torch.bfloat16
10
  device = "cuda" if torch.cuda.is_available() else "cpu"
11
 
12
+ # ๋ชจ๋ธ ๋กœ๋“œ (FLUX.1-schnell)
13
  pipe = DiffusionPipeline.from_pretrained(
14
  "black-forest-labs/FLUX.1-schnell",
15
  torch_dtype=dtype
 
18
  MAX_SEED = np.iinfo(np.int32).max
19
  MAX_IMAGE_SIZE = 2048
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  @spaces.GPU()
22
+ def generate_image(prompt, seed, randomize_seed, width, height, steps, guidance_scale):
23
  if randomize_seed:
24
  seed = random.randint(0, MAX_SEED)
25
+ generator = torch.Generator(device).manual_seed(seed)
26
  image = pipe(
27
  prompt=prompt,
28
  width=width,
29
  height=height,
30
+ num_inference_steps=steps,
31
  generator=generator,
32
+ guidance_scale=guidance_scale
33
  ).images[0]
34
  return image, seed
35
 
36
+ # CSS ์Šคํƒ€์ผ (์ขŒ์ธก ์‚ฌ์ด๋“œ๋ฐ” ๋ฐ ์ „์ฒด ๋ ˆ์ด์•„์›ƒ ์ฐธ๊ณ )
37
  css = """
38
+ body {
39
+ background: linear-gradient(135deg, #667eea, #764ba2);
40
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
41
+ color: #333;
42
+ margin: 0;
43
+ padding: 0;
 
 
 
 
44
  }
45
+ .gradio-container {
46
+ background: rgba(255, 255, 255, 0.95);
47
+ border-radius: 15px;
48
+ padding: 30px 40px;
49
+ box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
50
+ margin: 40px auto;
51
+ max-width: 1200px;
 
 
 
 
 
 
 
 
52
  }
53
+ .gradio-container h1 {
54
+ color: #333;
55
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
 
56
  }
57
+ .sidebar {
58
+ background: rgba(255, 255, 255, 0.98);
 
59
  border-radius: 10px;
60
+ padding: 20px;
61
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  }
63
+ button, .btn {
64
+ background: linear-gradient(90deg, #ff8a00, #e52e71);
65
+ border: none;
66
+ color: #fff;
67
+ padding: 12px 24px;
68
+ text-transform: uppercase;
69
  font-weight: bold;
70
+ letter-spacing: 1px;
71
+ border-radius: 5px;
72
+ cursor: pointer;
73
+ transition: transform 0.2s ease-in-out;
 
 
 
 
 
74
  }
75
+ button:hover, .btn:hover {
76
+ transform: scale(1.05);
77
  }
78
  """
79
 
80
+ # ์˜ˆ์ œ ํ”„๋กฌํ”„ํŠธ (๊ฐ ํƒญ๋ณ„๋กœ ๋‹ค์–‘ํ•œ ์˜ˆ์‹œ)
81
+ example_prompts = {
82
+ "Flowchart": [
83
+ "A hand-drawn style flowchart depicting a software release pipeline with clear nodes for development, testing, deployment, and maintenance.",
84
+ "An illustrated business process flowchart for a customer service workflow, with decision points and clear labels.",
85
+ "A creative flowchart showing the steps of a marketing campaign from ideation to execution."
86
+ ],
87
+ "Infographic": [
88
+ "A visually appealing infographic displaying global sales data with vibrant colors, icons, and modern design elements.",
89
+ "An infographic illustrating startup growth metrics with graphs, charts, and minimalist design.",
90
+ "A data-driven infographic showcasing key performance indicators for a corporate strategy, with clear sections and illustrations."
91
+ ],
92
+ "Mockup": [
93
+ "A sketch-style UX mockup for a mobile banking app login flow, featuring clean lines and minimalist design.",
94
+ "A wireframe mockup for an e-commerce website homepage, with user-friendly navigation and modern layout.",
95
+ "A prototype mockup for a productivity dashboard with a focus on intuitive user interface elements."
96
+ ],
97
+ "Diagram": [
98
+ "An educational diagram of a supply chain process, with clear labels and vibrant, friendly illustrations.",
99
+ "A business diagram showing the flow of information between departments in an organization, with modern icons and a clean layout.",
100
+ "A conceptual diagram of a data pipeline, illustrating each step with simple, engaging visuals."
101
+ ],
102
+ "Design": [
103
+ "A sleek industrial design concept for a modern office chair, featuring ergonomic curves and minimalist aesthetics.",
104
+ "A futuristic design for a high-tech smart conference room, blending modern materials with interactive displays.",
105
+ "A creative product design for a smart coffee machine with a metallic finish and touch interface."
106
+ ]
107
+ }
108
+
109
+ # ๊ฐ„๋‹จํ•œ ์˜ˆ์ œ ํ•ธ๋“ค๋Ÿฌ (์˜ˆ์ œ ๋ฒ„ํŠผ ํด๋ฆญ ์‹œ ํ”„๋กฌํ”„ํŠธ ์—…๋ฐ์ดํŠธ)
110
+ def set_prompt(example_text):
111
+ return example_text
112
+
113
+ with gr.Blocks(css=css, title="๋น„์ฆˆ๋‹ˆ์Šค ์—์ด์ „ํŠธ ์ด๋ฏธ์ง€ ์ƒ์„ฑ๊ธฐ") as demo:
114
  gr.Markdown(
115
  """
116
+ <div style="text-align:center;">
117
+ <h1>๋น„์ฆˆ๋‹ˆ์Šค ์—์ด์ „ํŠธ ์ด๋ฏธ์ง€ ์ƒ์„ฑ๊ธฐ</h1>
118
+ <p>๋น„์ฆˆ๋‹ˆ์Šค์— ํ•„์š”ํ•œ ๋‹ค์–‘ํ•œ ์š”์†Œ๋ฅผ ํƒญ๋ณ„๋กœ ๊ตฌ๋ถ„ํ•˜์—ฌ ํ”„๋กœ์„ธ์Šค๋ณ„ ์˜์‚ฌ๊ฒฐ์ • ๋ฐ ๋””์ž์ธ์„ ์ƒ์„ฑํ•ฉ๋‹ˆ๋‹ค.</p>
119
+ <p><strong>Gini's AI Spaces:</strong> Flowchart, Infographic, Mockup, Diagram, Design</p>
120
+ </div>
121
+ """
122
+ )
123
+
124
+ with gr.Row():
125
+ # ๋ฉ”์ธ ์˜์—ญ: ํƒญ๋ณ„๋กœ ๋ถ„๋ฆฌ๋œ ์ƒ์„ฑ ์ธํ„ฐํŽ˜์ด์Šค
126
+ with gr.Column(scale=8):
127
+ with gr.Tabs():
128
+ ## Flowchart ํƒญ
129
+ with gr.Tab("Flowchart"):
130
+ flow_prompt = gr.Textbox(label="Flowchart Prompt", placeholder="Enter a flowchart description...", lines=5)
131
+ flow_generate = gr.Button("Generate Flowchart")
132
+ flow_image = gr.Image(label="Generated Flowchart")
133
+ with gr.Accordion("Example Prompts", open=False):
134
+ for ex in example_prompts["Flowchart"]:
135
+ gr.Button(ex, variant="secondary").click(fn=lambda ex=ex: set_prompt(ex), outputs=flow_prompt)
136
+
137
+ ## Infographic ํƒญ
138
+ with gr.Tab("Infographic"):
139
+ info_prompt = gr.Textbox(label="Infographic Prompt", placeholder="Enter an infographic description...", lines=5)
140
+ info_generate = gr.Button("Generate Infographic")
141
+ info_image = gr.Image(label="Generated Infographic")
142
+ with gr.Accordion("Example Prompts", open=False):
143
+ for ex in example_prompts["Infographic"]:
144
+ gr.Button(ex, variant="secondary").click(fn=lambda ex=ex: set_prompt(ex), outputs=info_prompt)
145
 
146
+ ## Mockup ํƒญ
147
+ with gr.Tab("Mockup"):
148
+ mock_prompt = gr.Textbox(label="Mockup Prompt", placeholder="Enter a mockup description...", lines=5)
149
+ mock_generate = gr.Button("Generate Mockup")
150
+ mock_image = gr.Image(label="Generated Mockup")
151
+ with gr.Accordion("Example Prompts", open=False):
152
+ for ex in example_prompts["Mockup"]:
153
+ gr.Button(ex, variant="secondary").click(fn=lambda ex=ex: set_prompt(ex), outputs=mock_prompt)
 
 
 
 
 
 
 
154
 
155
+ ## Diagram ํƒญ
156
+ with gr.Tab("Diagram"):
157
+ diag_prompt = gr.Textbox(label="Diagram Prompt", placeholder="Enter a diagram description...", lines=5)
158
+ diag_generate = gr.Button("Generate Diagram")
159
+ diag_image = gr.Image(label="Generated Diagram")
160
+ with gr.Accordion("Example Prompts", open=False):
161
+ for ex in example_prompts["Diagram"]:
162
+ gr.Button(ex, variant="secondary").click(fn=lambda ex=ex: set_prompt(ex), outputs=diag_prompt)
163
+
164
+ ## Design ํƒญ
165
+ with gr.Tab("Design"):
166
+ des_prompt = gr.Textbox(label="Design Prompt", placeholder="Enter a design concept...", lines=5)
167
+ des_generate = gr.Button("Generate Design")
168
+ des_image = gr.Image(label="Generated Design")
169
+ with gr.Accordion("Example Prompts", open=False):
170
+ for ex in example_prompts["Design"]:
171
+ gr.Button(ex, variant="secondary").click(fn=lambda ex=ex: set_prompt(ex), outputs=des_prompt)
172
 
173
+ # ์ขŒ์ธก ์‚ฌ์ด๋“œ๋ฐ”: ๊ณตํ†ต ์ƒ์„ฑ ํŒŒ๋ผ๋ฏธํ„ฐ
174
+ with gr.Sidebar(label="Parameters", open=True):
175
+ gr.Markdown("### Generation Parameters")
176
+ seed_slider = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=42)
177
+ randomize_seed = gr.Checkbox(label="Randomize Seed", value=True)
178
+ width_slider = gr.Slider(label="Width", minimum=256, maximum=MAX_IMAGE_SIZE, step=32, value=1024)
179
+ height_slider = gr.Slider(label="Height", minimum=256, maximum=MAX_IMAGE_SIZE, step=32, value=1024)
180
+ steps_slider = gr.Slider(label="Inference Steps", minimum=1, maximum=50, step=1, value=20)
181
+ guidance_slider = gr.Slider(label="Guidance Scale", minimum=0.0, maximum=15.0, step=0.5, value=7.5)
182
+
183
+ # ๊ฐ ํƒญ๋ณ„ ์ƒ์„ฑ ๋ฒ„ํŠผ์— ์ด๋ฒคํŠธ ์—ฐ๊ฒฐ
184
+ flow_generate.click(
185
+ fn=generate_image,
186
+ inputs=[flow_prompt, seed_slider, randomize_seed, width_slider, height_slider, steps_slider, guidance_slider],
187
+ outputs=[flow_image, seed_slider]
188
+ )
189
+
190
+ info_generate.click(
191
+ fn=generate_image,
192
+ inputs=[info_prompt, seed_slider, randomize_seed, width_slider, height_slider, steps_slider, guidance_slider],
193
+ outputs=[info_image, seed_slider]
194
+ )
195
+
196
+ mock_generate.click(
197
+ fn=generate_image,
198
+ inputs=[mock_prompt, seed_slider, randomize_seed, width_slider, height_slider, steps_slider, guidance_slider],
199
+ outputs=[mock_image, seed_slider]
200
+ )
201
+
202
+ diag_generate.click(
203
+ fn=generate_image,
204
+ inputs=[diag_prompt, seed_slider, randomize_seed, width_slider, height_slider, steps_slider, guidance_slider],
205
+ outputs=[diag_image, seed_slider]
206
+ )
207
+
208
+ des_generate.click(
209
+ fn=generate_image,
210
+ inputs=[des_prompt, seed_slider, randomize_seed, width_slider, height_slider, steps_slider, guidance_slider],
211
+ outputs=[des_image, seed_slider]
212
  )
213
 
214
  if __name__ == "__main__":