ktrndy commited on
Commit
e961ca6
·
verified ·
1 Parent(s): d6d22de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +59 -58
app.py CHANGED
@@ -58,72 +58,73 @@ with gr.Blocks(css=css) as demo:
58
  gr.Markdown(" # Text-to-Image demo")
59
 
60
  with gr.Row():
61
- model_id = gr.Textbox(
62
- label="Model ID",
 
 
 
 
 
 
 
 
63
  max_lines=1,
64
- placeholder="Enter model id",
65
- value=model_id_default,
66
- )
67
-
68
- prompt = gr.Textbox(
69
- label="Prompt",
70
- max_lines=1,
71
- placeholder="Enter your prompt",
72
- )
73
-
74
- negative_prompt = gr.Textbox(
75
- label="Negative prompt",
76
- max_lines=1,
77
- placeholder="Enter your negative prompt",
78
- )
79
-
80
- with gr.Row():
81
- seed = gr.Number(
82
- label="Seed",
83
- minimum=0,
84
- maximum=MAX_SEED,
85
- step=1,
86
- value=42,
87
  )
88
 
89
- guidance_scale = gr.Slider(
90
- label="Guidance scale",
91
- minimum=0.0,
92
- maximum=10.0,
93
- step=0.1,
94
- value=7.0, # Replace with defaults that work for your model
95
- )
96
-
97
- num_inference_steps = gr.Slider(
98
- label="Number of inference steps",
99
- minimum=1,
100
- maximum=50,
101
- step=1,
102
- value=20, # Replace with defaults that work for your model
103
  )
104
-
105
- with gr.Accordion("Optional Settings", open=False):
106
 
107
  with gr.Row():
108
- width = gr.Slider(
109
- label="Width",
110
- minimum=256,
111
- maximum=MAX_IMAGE_SIZE,
112
- step=32,
113
- value=1024, # Replace with defaults that work for your model
114
  )
115
-
116
- height = gr.Slider(
117
- label="Height",
118
- minimum=256,
119
- maximum=MAX_IMAGE_SIZE,
120
- step=32,
121
- value=1024, # Replace with defaults that work for your model
 
 
 
 
 
 
 
 
122
  )
123
-
124
- run_button = gr.Button("Run", scale=0, variant="primary")
125
- result = gr.Image(label="Result", show_label=False)
126
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  gr.on(
128
  triggers=[run_button.click],
129
  fn=infer,
 
58
  gr.Markdown(" # Text-to-Image demo")
59
 
60
  with gr.Row():
61
+ with gr.Row():
62
+ model_id = gr.Textbox(
63
+ label="Model ID",
64
+ max_lines=1,
65
+ placeholder="Enter model id",
66
+ value=model_id_default,
67
+ )
68
+
69
+ prompt = gr.Textbox(
70
+ label="Prompt",
71
  max_lines=1,
72
+ placeholder="Enter your prompt",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  )
74
 
75
+ negative_prompt = gr.Textbox(
76
+ label="Negative prompt",
77
+ max_lines=1,
78
+ placeholder="Enter your negative prompt",
 
 
 
 
 
 
 
 
 
 
79
  )
 
 
80
 
81
  with gr.Row():
82
+ seed = gr.Number(
83
+ label="Seed",
84
+ minimum=0,
85
+ maximum=MAX_SEED,
86
+ step=1,
87
+ value=42,
88
  )
89
+
90
+ guidance_scale = gr.Slider(
91
+ label="Guidance scale",
92
+ minimum=0.0,
93
+ maximum=10.0,
94
+ step=0.1,
95
+ value=7.0, # Replace with defaults that work for your model
96
+ )
97
+
98
+ num_inference_steps = gr.Slider(
99
+ label="Number of inference steps",
100
+ minimum=1,
101
+ maximum=50,
102
+ step=1,
103
+ value=20, # Replace with defaults that work for your model
104
  )
105
+
106
+ with gr.Accordion("Optional Settings", open=False):
107
+
108
+ with gr.Row():
109
+ width = gr.Slider(
110
+ label="Width",
111
+ minimum=256,
112
+ maximum=MAX_IMAGE_SIZE,
113
+ step=32,
114
+ value=1024, # Replace with defaults that work for your model
115
+ )
116
+
117
+ height = gr.Slider(
118
+ label="Height",
119
+ minimum=256,
120
+ maximum=MAX_IMAGE_SIZE,
121
+ step=32,
122
+ value=1024, # Replace with defaults that work for your model
123
+ )
124
+
125
+ run_button = gr.Button("Run", scale=0, variant="primary")
126
+ result = gr.Image(label="Result", show_label=False)
127
+
128
  gr.on(
129
  triggers=[run_button.click],
130
  fn=infer,