Zaiiida commited on
Commit
c66f90b
·
verified ·
1 Parent(s): 19b2372

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +113 -1
app.py CHANGED
@@ -1,3 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  with gr.Blocks(theme=CustomTheme(), css=css) as demo:
2
  with gr.Column(elem_id="col-container"):
3
  # Make "Prompt" bold using Markdown syntax and assign a class
@@ -50,4 +162,4 @@ if __name__ == "__main__":
50
  server_port=7860,
51
  share=True,
52
  show_api=False
53
- )
 
1
+ import gradio as gr
2
+ import numpy as np
3
+ import random
4
+ import spaces
5
+ from diffusers import DiffusionPipeline
6
+ import torch
7
+
8
+ device = "cuda" if torch.cuda.is_available() else "cpu"
9
+ model_repo_id = "stabilityai/stable-diffusion-3.5-large"
10
+
11
+ if torch.cuda.is_available():
12
+ torch_dtype = torch.bfloat16
13
+ else:
14
+ torch_dtype = torch.float32
15
+
16
+ pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
17
+ pipe = pipe.to(device)
18
+
19
+ MAX_SEED = np.iinfo(np.int32).max
20
+ MAX_IMAGE_SIZE = 1024
21
+
22
+ @spaces.GPU(duration=45)
23
+ def infer(
24
+ prompt,
25
+ negative_prompt="",
26
+ seed=42,
27
+ randomize_seed=False,
28
+ width=768,
29
+ height=768,
30
+ guidance_scale=4.5,
31
+ num_inference_steps=20,
32
+ progress=gr.Progress(track_tqdm=True),
33
+ ):
34
+ if randomize_seed:
35
+ seed = random.randint(0, MAX_SEED)
36
+
37
+ generator = torch.Generator().manual_seed(seed)
38
+
39
+ image = pipe(
40
+ prompt=prompt,
41
+ negative_prompt=negative_prompt,
42
+ guidance_scale=guidance_scale,
43
+ num_inference_steps=num_inference_steps,
44
+ width=width,
45
+ height=height,
46
+ generator=generator,
47
+ ).images[0]
48
+
49
+ return image, seed
50
+
51
+ examples = [
52
+ "A full-body depiction of a futuristic cyberpunk warrior wearing neon armor with intricate details, holding a sleek glowing katana in a ready stance. The character stands confidently with glowing eyes and a dynamic pose that exudes strength and mystery. Isolated on a clean, transparent, or neutral background to emphasize the character's design and details, with subtle reflections and lighting to enhance the neon glow and textures.",
53
+ ]
54
+
55
+ # Define the custom theme with input styles
56
+ class CustomTheme(gr.themes.Base):
57
+ def __init__(self):
58
+ super().__init__()
59
+ self.primary_hue = "#5271FF"
60
+ self.background_fill_primary = "#17181B"
61
+ self.background_fill_secondary = "#17181B"
62
+ self.background_fill_tertiary = "#17181B"
63
+ self.text_color_primary = "#AEB3B8"
64
+ self.text_color_secondary = "#AEB3B8"
65
+ self.text_color_tertiary = "#AEB3B8"
66
+ self.input_background_fill = "#17181B" # Set input background color
67
+ self.input_text_color = "#AEB3B8" # Set input text color
68
+
69
+ # Custom CSS to hide the footer, set fonts, and adjust font weights
70
+ css = """
71
+ /* Hide the footer */
72
+ footer {
73
+ visibility: hidden;
74
+ height: 0;
75
+ margin: 0;
76
+ padding: 0;
77
+ overflow: hidden;
78
+ }
79
+ /* Import Google Fonts */
80
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap');
81
+ /* Apply fonts to different elements */
82
+ body, input, button, textarea, select, .gr-button {
83
+ font-family: 'Roboto', sans-serif;
84
+ }
85
+ /* Make button text normal weight */
86
+ .generate-button, .generate-button .gr-button {
87
+ font-weight: normal !important;
88
+ }
89
+ /* Ensure headings use Montserrat */
90
+ h1, h2, h3, h4, h5, h6 {
91
+ font-family: 'Montserrat', sans-serif;
92
+ font-weight: 700;
93
+ }
94
+ /* Additional styling for sliders and checkboxes if needed */
95
+ input[type="range"]::-webkit-slider-thumb {
96
+ background: #5271FF;
97
+ }
98
+ input[type="range"]::-moz-range-thumb {
99
+ background: #5271FF;
100
+ }
101
+ input[type="range"]::-ms-thumb {
102
+ background: #5271FF;
103
+ }
104
+ input[type="checkbox"]:checked {
105
+ background-color: #5271FF;
106
+ }
107
+ /* Make Prompt text bold */
108
+ .prompt-text {
109
+ font-weight: bold;
110
+ }
111
+ """
112
+
113
  with gr.Blocks(theme=CustomTheme(), css=css) as demo:
114
  with gr.Column(elem_id="col-container"):
115
  # Make "Prompt" bold using Markdown syntax and assign a class
 
162
  server_port=7860,
163
  share=True,
164
  show_api=False
165
+ )