Taizun commited on
Commit
cf0047c
·
verified ·
1 Parent(s): 73b771a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +114 -0
app.py ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import torch
3
+ from diffusers import DiffusionPipeline
4
+
5
+ # Model paths and settings
6
+ color_book_lora_path = "artificialguybr/ColoringBookRedmond-V2"
7
+ color_book_trigger = ", ColoringBookAF, Coloring Book"
8
+
9
+ @st.cache_resource
10
+ def load_pipeline(lora):
11
+ device = "cuda" if torch.cuda.is_available() else "cpu"
12
+ st.write(f"Using device: {device}") # Displaying the selected device
13
+ pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-refiner-1.0",
14
+ torch_dtype=torch.float16 if device == "cuda" else torch.float32,
15
+ use_safetensors=True,
16
+ variant="fp16" if device == "cuda" else None)
17
+ if lora != "None":
18
+ st.write(f"Loading Lora model: {color_book_lora_path}") # Debugging Lora loading
19
+ pipe.load_lora_weights(color_book_lora_path)
20
+ return pipe
21
+
22
+ def image_generation(pipe, prompt, negative_prompt):
23
+ try:
24
+ image = pipe(
25
+ prompt=prompt,
26
+ negative_prompt="blurred, ugly, watermark, low resolution" + negative_prompt,
27
+ num_inference_steps=20,
28
+ guidance_scale=9.0
29
+ ).images[0]
30
+ return image
31
+ except Exception as e:
32
+ st.error(f"Error generating image: {str(e)}")
33
+ return None
34
+
35
+ # Data for different styles
36
+ table = [
37
+ {
38
+ "name": "sai-neonpunk",
39
+ "prompt": "neonpunk style . cyberpunk, vaporwave, neon, vibes, vibrant, stunningly beautiful, crisp, detailed, sleek, ultramodern, magenta highlights, dark purple shadows, high contrast, cinematic, ultra detailed, intricate, professional",
40
+ "negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured"
41
+ },
42
+ {
43
+ "name": "futuristic-retro cyberpunk",
44
+ "prompt": "retro cyberpunk. 80's inspired, synthwave, neon, vibrant, detailed, retro futurism",
45
+ "negative_prompt": "modern, desaturated, black and white, realism, low contrast"
46
+ },
47
+ {
48
+ "name": "Dark Fantasy",
49
+ "prompt": "Dark Fantasy Art, dark, moody, dark fantasy style",
50
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, bright, sunny"
51
+ },
52
+ {
53
+ "name": "Double Exposure",
54
+ "prompt": "Double Exposure Style, double image ghost effect, image combination, double exposure style",
55
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
56
+ },
57
+ {
58
+ "name": "None",
59
+ "prompt": "8K ",
60
+ "negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured"
61
+ }
62
+ ]
63
+
64
+ # Convert list to dict for easier lookup
65
+ styles_dict = {entry["name"]: entry for entry in table}
66
+
67
+ # Streamlit app title and styling
68
+ st.title("Coloring Book Generator")
69
+ st.markdown("<h2 style='text-align: center; color: #888;'>By Taizun</h2>", unsafe_allow_html=True)
70
+
71
+ # Add a header image
72
+ st.image("https://your-image-link.com", use_column_width=True) # Replace with your image URL or local path
73
+
74
+ # Prompt input from user
75
+ prompt = st.text_input("Enter your Prompt", value="A cute Lion")
76
+
77
+ # Dropdown for selecting Lora
78
+ select_lora = st.selectbox("Select your Lora", options=["Coloring Book", "None"])
79
+
80
+ # Dropdown for selecting style
81
+ style_name = st.selectbox("Select a Style", options=list(styles_dict.keys()))
82
+
83
+ # Display the selected style's prompt and negative prompt
84
+ if style_name:
85
+ selected_entry = styles_dict[style_name]
86
+ selected_style_prompt = selected_entry["prompt"]
87
+ selected_style_negative_prompt = selected_entry["negative_prompt"]
88
+
89
+ # Button for image generation
90
+ if st.button("Generate Awesome Image"):
91
+ with st.spinner("Generating your awesome image..."):
92
+ pipeline = load_pipeline(select_lora)
93
+ if select_lora == "None":
94
+ image = image_generation(pipeline, prompt + selected_style_prompt, selected_style_negative_prompt)
95
+ else:
96
+ image = image_generation(pipeline, prompt + selected_style_prompt + color_book_trigger, selected_style_negative_prompt)
97
+ if image:
98
+ st.image(image)
99
+
100
+ # Add a footer with credit by Taizun (smaller text)
101
+ st.markdown("""
102
+ <style>
103
+ .footer {
104
+ text-align: center;
105
+ font-size: 0.8rem;
106
+ color: #888;
107
+ margin-top: 30px;
108
+ }
109
+ </style>
110
+ <div class="footer">
111
+ <p>Created by Taizun | Powered by Streamlit</p>
112
+ </div>
113
+ """, unsafe_allow_html=True)
114
+