Staticaliza commited on
Commit
35915ac
·
verified ·
1 Parent(s): 212b184

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -45,12 +45,12 @@ def get_seed(seed):
45
  return random.randint(0, MAX_SEED)
46
 
47
  @spaces.GPU(duration=30)
48
- def generate(input=DEFAULT_INPUT, negative_input=DEFAULT_NEGATIVE_INPUT, model=DEFAULT_MODEL, height=DEFAULT_HEIGHT, width=DEFAULT_WIDTH, steps=1, guidance=0, number=1, seed=None):
49
 
50
  repo = None
51
  seed = get_seed(seed)
52
 
53
- print(input, negative_input, model, height, width, steps, guidance, number, seed)
54
 
55
  if model == "Anime":
56
  vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype=torch.float16)
@@ -71,7 +71,7 @@ def generate(input=DEFAULT_INPUT, negative_input=DEFAULT_NEGATIVE_INPUT, model=D
71
 
72
  parameters = {
73
  "prompt": input,
74
- "negative_prompt": negative_input,
75
  "height": height,
76
  "width": width,
77
  "num_inference_steps": steps,
@@ -100,6 +100,7 @@ with gr.Blocks(css=css) as main:
100
 
101
  with gr.Column():
102
  input = gr.Textbox(lines=1, value=DEFAULT_INPUT, label="Input")
 
103
  negative_input = gr.Textbox(lines=1, value=DEFAULT_NEGATIVE_INPUT, label="Input Negative")
104
  model = gr.Dropdown(label="Models", choices=["Default", "Anime"], value="Default")
105
  height = gr.Slider(minimum=1, maximum=2160, step=1, value=DEFAULT_HEIGHT, label="Height")
@@ -114,7 +115,7 @@ with gr.Blocks(css=css) as main:
114
  with gr.Column():
115
  images = gr.Gallery(columns=1, label="Image")
116
 
117
- submit.click(generate, inputs=[input, negative_input, model, height, width, steps, guidance, number, seed], outputs=[images], queue=False)
118
  maintain.click(cloud, inputs=[], outputs=[], queue=False)
119
 
120
  main.launch(show_api=True)
 
45
  return random.randint(0, MAX_SEED)
46
 
47
  @spaces.GPU(duration=30)
48
+ def generate(input=DEFAULT_INPUT, filter_input="", negative_input=DEFAULT_NEGATIVE_INPUT, model=DEFAULT_MODEL, height=DEFAULT_HEIGHT, width=DEFAULT_WIDTH, steps=1, guidance=0, number=1, seed=None):
49
 
50
  repo = None
51
  seed = get_seed(seed)
52
 
53
+ print(input, filter_input, negative_input, model, height, width, steps, guidance, number, seed)
54
 
55
  if model == "Anime":
56
  vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype=torch.float16)
 
71
 
72
  parameters = {
73
  "prompt": input,
74
+ "negative_prompt": filter_input + negative_input,
75
  "height": height,
76
  "width": width,
77
  "num_inference_steps": steps,
 
100
 
101
  with gr.Column():
102
  input = gr.Textbox(lines=1, value=DEFAULT_INPUT, label="Input")
103
+ filter_input = gr.Textbox(lines=1, value="", label="Input Filter")
104
  negative_input = gr.Textbox(lines=1, value=DEFAULT_NEGATIVE_INPUT, label="Input Negative")
105
  model = gr.Dropdown(label="Models", choices=["Default", "Anime"], value="Default")
106
  height = gr.Slider(minimum=1, maximum=2160, step=1, value=DEFAULT_HEIGHT, label="Height")
 
115
  with gr.Column():
116
  images = gr.Gallery(columns=1, label="Image")
117
 
118
+ submit.click(generate, inputs=[input, filter_input, negative_input, model, height, width, steps, guidance, number, seed], outputs=[images], queue=False)
119
  maintain.click(cloud, inputs=[], outputs=[], queue=False)
120
 
121
  main.launch(show_api=True)