awacke1 commited on
Commit
16481d9
ยท
verified ยท
1 Parent(s): 6bca1b5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +238 -0
app.py ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from gradio_client import Client
3
+ import time
4
+ import concurrent.futures
5
+
6
+ class ModelGenerator:
7
+ @staticmethod
8
+ def generate_midjourney(prompt):
9
+ try:
10
+ client = Client("mukaist/Midjourney")
11
+ result = client.predict(
12
+ prompt=prompt,
13
+ negative_prompt="(deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime:1.4), text, close up, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck",
14
+ use_negative_prompt=True,
15
+ style="2560 x 1440",
16
+ seed=0,
17
+ width=1024,
18
+ height=1024,
19
+ guidance_scale=6,
20
+ randomize_seed=True,
21
+ api_name="/run"
22
+ )
23
+ return ("Midjourney", result)
24
+ except Exception as e:
25
+ return ("Midjourney", f"Error: {str(e)}")
26
+
27
+ @staticmethod
28
+ def generate_stable_cascade(prompt):
29
+ try:
30
+ client = Client("multimodalart/stable-cascade")
31
+ result = client.predict(
32
+ prompt=prompt,
33
+ negative_prompt=prompt,
34
+ seed=0,
35
+ width=1024,
36
+ height=1024,
37
+ prior_num_inference_steps=20,
38
+ prior_guidance_scale=4,
39
+ decoder_num_inference_steps=10,
40
+ decoder_guidance_scale=0,
41
+ num_images_per_prompt=1,
42
+ api_name="/run"
43
+ )
44
+ return ("Stable Cascade", result)
45
+ except Exception as e:
46
+ return ("Stable Cascade", f"Error: {str(e)}")
47
+
48
+ @staticmethod
49
+ def generate_stable_diffusion_3(prompt):
50
+ try:
51
+ client = Client("stabilityai/stable-diffusion-3-medium")
52
+ result = client.predict(
53
+ prompt=prompt,
54
+ negative_prompt=prompt,
55
+ seed=0,
56
+ randomize_seed=True,
57
+ width=1024,
58
+ height=1024,
59
+ guidance_scale=5,
60
+ num_inference_steps=28,
61
+ api_name="/infer"
62
+ )
63
+ return ("SD 3 Medium", result)
64
+ except Exception as e:
65
+ return ("SD 3 Medium", f"Error: {str(e)}")
66
+
67
+ @staticmethod
68
+ def generate_stable_diffusion_35(prompt):
69
+ try:
70
+ client = Client("stabilityai/stable-diffusion-3.5-large")
71
+ result = client.predict(
72
+ prompt=prompt,
73
+ negative_prompt=prompt,
74
+ seed=0,
75
+ randomize_seed=True,
76
+ width=1024,
77
+ height=1024,
78
+ guidance_scale=4.5,
79
+ num_inference_steps=40,
80
+ api_name="/infer"
81
+ )
82
+ return ("SD 3.5 Large", result)
83
+ except Exception as e:
84
+ return ("SD 3.5 Large", f"Error: {str(e)}")
85
+
86
+ @staticmethod
87
+ def generate_playground_v2_5(prompt):
88
+ try:
89
+ client = Client("https://playgroundai-playground-v2-5.hf.space/--replicas/ji5gy/")
90
+ result = client.predict(
91
+ prompt,
92
+ prompt, # negative prompt
93
+ True, # use negative prompt
94
+ 0, # seed
95
+ 1024, # width
96
+ 1024, # height
97
+ 7.5, # guidance scale
98
+ True, # randomize seed
99
+ api_name="/run"
100
+ )
101
+ # Result is a tuple (gallery, seed), we want just the first image from gallery
102
+ if result and isinstance(result, tuple) and result[0]:
103
+ return ("Playground v2.5", result[0][0]['image'])
104
+ return ("Playground v2.5", "Error: No image generated")
105
+ except Exception as e:
106
+ return ("Playground v2.5", f"Error: {str(e)}")
107
+
108
+ def generate_images(prompt, selected_models):
109
+ results = []
110
+ with concurrent.futures.ThreadPoolExecutor() as executor:
111
+ futures = []
112
+ model_map = {
113
+ "Midjourney": ModelGenerator.generate_midjourney,
114
+ "Stable Cascade": ModelGenerator.generate_stable_cascade,
115
+ "SD 3 Medium": ModelGenerator.generate_stable_diffusion_3,
116
+ "SD 3.5 Large": ModelGenerator.generate_stable_diffusion_35,
117
+ "Playground v2.5": ModelGenerator.generate_playground_v2_5
118
+ }
119
+
120
+ for model in selected_models:
121
+ if model in model_map:
122
+ futures.append(executor.submit(model_map[model], prompt))
123
+
124
+ for future in concurrent.futures.as_completed(futures):
125
+ results.append(future.result())
126
+
127
+ return results
128
+
129
+ def handle_prompt_click(prompt_text, key):
130
+ st.session_state[f'selected_prompt_{key}'] = prompt_text
131
+
132
+ selected_models = st.session_state.get('selected_models', [])
133
+
134
+ if not selected_models:
135
+ st.warning("Please select at least one model from the sidebar!")
136
+ return
137
+
138
+ with st.spinner('Generating artwork...'):
139
+ results = generate_images(prompt_text, selected_models)
140
+ st.session_state[f'generated_images_{key}'] = results
141
+ st.success("Artwork generated successfully!")
142
+
143
+ def main():
144
+ st.title("๐ŸŽจ Multi-Model Art Generator")
145
+
146
+ with st.sidebar:
147
+ st.header("Model Selection")
148
+ st.session_state['selected_models'] = st.multiselect(
149
+ "Choose AI Models",
150
+ ["Midjourney", "Stable Cascade", "SD 3 Medium", "SD 3.5 Large", "Playground v2.5"],
151
+ default=["Midjourney"]
152
+ )
153
+
154
+ st.markdown("---")
155
+ st.markdown("### Selected Models:")
156
+ for model in st.session_state['selected_models']:
157
+ st.write(f"โœ“ {model}")
158
+
159
+ st.markdown("---")
160
+ st.markdown("### Model Information:")
161
+ st.markdown("""
162
+ - **Midjourney**: Best for artistic and creative imagery
163
+ - **Stable Cascade**: New architecture with high detail
164
+ - **SD 3 Medium**: Fast and efficient generation
165
+ - **SD 3.5 Large**: Highest quality, slower generation
166
+ - **Playground v2.5**: Advanced model with high customization
167
+ """)
168
+
169
+ st.markdown("### Select a prompt style to generate artwork:")
170
+
171
+ prompt_emojis = {
172
+ "AIart/AIArtistCommunity": "๐Ÿค–",
173
+ "Black & White": "โšซโšช",
174
+ "Black & Yellow": "โšซ๐Ÿ’›",
175
+ "Blindfold": "๐Ÿ™ˆ",
176
+ "Break": "๐Ÿ’”",
177
+ "Broken": "๐Ÿ”จ",
178
+ "Christmas Celebrations art": "๐ŸŽ„",
179
+ "Colorful Art": "๐ŸŽจ",
180
+ "Crimson art": "๐Ÿ”ด",
181
+ "Eyes Art": "๐Ÿ‘๏ธ",
182
+ "Going out with Style": "๐Ÿ’ƒ",
183
+ "Hooded Girl": "๐Ÿงฅ",
184
+ "Lips": "๐Ÿ‘„",
185
+ "MAEKHLONG": "๐Ÿฎ",
186
+ "Mermaid": "๐Ÿงœโ€โ™€๏ธ",
187
+ "Morning Sunshine": "๐ŸŒ…",
188
+ "Music Art": "๐ŸŽต",
189
+ "Owl": "๐Ÿฆ‰",
190
+ "Pink": "๐Ÿ’—",
191
+ "Purple": "๐Ÿ’œ",
192
+ "Rain": "๐ŸŒง๏ธ",
193
+ "Red Moon": "๐ŸŒ‘",
194
+ "Rose": "๐ŸŒน",
195
+ "Snow": "โ„๏ธ",
196
+ "Spacesuit Girl": "๐Ÿ‘ฉโ€๐Ÿš€",
197
+ "Steampunk": "โš™๏ธ",
198
+ "Succubus": "๐Ÿ˜ˆ",
199
+ "Sunlight": "โ˜€๏ธ",
200
+ "Weird art": "๐ŸŽญ",
201
+ "White Hair": "๐Ÿ‘ฑโ€โ™€๏ธ",
202
+ "Wings art": "๐Ÿ‘ผ",
203
+ "Woman with Sword": "โš”๏ธ"
204
+ }
205
+
206
+ col1, col2, col3 = st.columns(3)
207
+
208
+ for idx, (prompt, emoji) in enumerate(prompt_emojis.items()):
209
+ full_prompt = f"QT {prompt}"
210
+ col = [col1, col2, col3][idx % 3]
211
+
212
+ with col:
213
+ if st.button(f"{emoji} {prompt}", key=f"btn_{idx}"):
214
+ handle_prompt_click(full_prompt, idx)
215
+
216
+ st.markdown("---")
217
+ st.markdown("### Generated Artwork:")
218
+
219
+ for key in st.session_state:
220
+ if key.startswith('selected_prompt_'):
221
+ idx = key.split('_')[-1]
222
+ images_key = f'generated_images_{idx}'
223
+
224
+ if images_key in st.session_state:
225
+ st.write("Prompt:", st.session_state[key])
226
+
227
+ cols = st.columns(len(st.session_state[images_key]))
228
+
229
+ for col, (model_name, result) in zip(cols, st.session_state[images_key]):
230
+ with col:
231
+ st.markdown(f"**{model_name}**")
232
+ if isinstance(result, str) and result.startswith("Error"):
233
+ st.error(result)
234
+ else:
235
+ st.image(result, use_column_width=True)
236
+
237
+ if __name__ == "__main__":
238
+ main()