zwl commited on
Commit
184c9f2
·
1 Parent(s): ebf438a

simplify the implementation

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -87,12 +87,8 @@ def txt_to_img(model_path, prompt, neg_prompt, guidance, steps, width, height, g
87
  prompt = current_model.prefix + prompt
88
  result = pipe(
89
  prompt,
90
- negative_prompt = neg_prompt,
91
- # num_images_per_prompt=n_images,
92
  num_inference_steps = int(steps),
93
  guidance_scale = guidance,
94
- width = width,
95
- height = height,
96
  generator = generator)
97
 
98
  return replace_nsfw_images(result)
@@ -118,7 +114,7 @@ def img_to_img(model_path, prompt, neg_prompt, img, strength, guidance, steps, w
118
  img = img.resize((int(img.width * ratio), int(img.height * ratio)), Image.LANCZOS)
119
  result = pipe(
120
  prompt,
121
- negative_prompt = neg_prompt,
122
  # num_images_per_prompt=n_images,
123
  init_image = img,
124
  num_inference_steps = int(steps),
@@ -227,7 +223,8 @@ with gr.Blocks(css=css) as demo:
227
  with gr.Column(scale=45):
228
  with gr.Tab("Options"):
229
  with gr.Group():
230
- neg_prompt = gr.Textbox(label="Negative prompt", placeholder="What to exclude from the image")
 
231
 
232
  # n_images = gr.Slider(label="Images", value=1, minimum=1, maximum=4, step=1)
233
 
 
87
  prompt = current_model.prefix + prompt
88
  result = pipe(
89
  prompt,
 
 
90
  num_inference_steps = int(steps),
91
  guidance_scale = guidance,
 
 
92
  generator = generator)
93
 
94
  return replace_nsfw_images(result)
 
114
  img = img.resize((int(img.width * ratio), int(img.height * ratio)), Image.LANCZOS)
115
  result = pipe(
116
  prompt,
117
+ # negative_prompt = neg_prompt,
118
  # num_images_per_prompt=n_images,
119
  init_image = img,
120
  num_inference_steps = int(steps),
 
223
  with gr.Column(scale=45):
224
  with gr.Tab("Options"):
225
  with gr.Group():
226
+ # neg_prompt = gr.Textbox(label="Negative prompt", placeholder="What to exclude from the image")
227
+ neg_prompt = ""
228
 
229
  # n_images = gr.Slider(label="Images", value=1, minimum=1, maximum=4, step=1)
230