RageshAntony commited on
Commit
cac78c6
·
verified ·
1 Parent(s): 91d9deb
Files changed (1) hide show
  1. check_app.py +4 -4
check_app.py CHANGED
@@ -137,7 +137,7 @@ def generate_image_with_progress(model_name,pipe, prompt, num_steps, guidance_sc
137
  cur_prg = step_index / num_steps
138
  progress(cur_prg, desc=f"Step {step_index}/{num_steps}")
139
  return callback_kwargs
140
- print(f"START GENR ")
141
  # Get the signature of the pipe
142
  pipe_signature = signature(pipe)
143
 
@@ -176,7 +176,7 @@ def generate_image_with_progress(model_name,pipe, prompt, num_steps, guidance_sc
176
 
177
  @spaces.GPU(duration=170)
178
  def create_pipeline_logic(prompt_text, model_name, negative_prompt="", seed=42, randomize_seed=False, width=1024, height=1024, guidance_scale=4.5, num_inference_steps=40,):
179
- print(f"starting {model_name}")
180
  progress = gr.Progress(track_tqdm=False)
181
  config = MODEL_CONFIGS[model_name]
182
  pipe_class = config["pipeline_class"]
@@ -259,7 +259,7 @@ def main():
259
  for model_name, config in MODEL_CONFIGS.items():
260
  #global gallery
261
  with gr.Tab(model_name) as tab_model:
262
- button = gr.Button(f"Run {model_name}")
263
  output = gr.Textbox(label="Status")
264
  img = gr.Image(label=model_name, height=300)
265
 
@@ -279,7 +279,7 @@ def main():
279
  inputs=[gr.Text(value= model_name,visible=False)],
280
  outputs=[gallery],
281
  )
282
- button.click(fn=create_pipeline_logic, inputs=[prompt_text, gr.Text(value= model_name,visible=False), negative_prompt,
283
  seed,
284
  randomize_seed,
285
  width,
 
137
  cur_prg = step_index / num_steps
138
  progress(cur_prg, desc=f"Step {step_index}/{num_steps}")
139
  return callback_kwargs
140
+ print(f"START GENR {model_name} {prompt} ")
141
  # Get the signature of the pipe
142
  pipe_signature = signature(pipe)
143
 
 
176
 
177
  @spaces.GPU(duration=170)
178
  def create_pipeline_logic(prompt_text, model_name, negative_prompt="", seed=42, randomize_seed=False, width=1024, height=1024, guidance_scale=4.5, num_inference_steps=40,):
179
+ print(f"starting {model_name} {prompt_text}")
180
  progress = gr.Progress(track_tqdm=False)
181
  config = MODEL_CONFIGS[model_name]
182
  pipe_class = config["pipeline_class"]
 
259
  for model_name, config in MODEL_CONFIGS.items():
260
  #global gallery
261
  with gr.Tab(model_name) as tab_model:
262
+ run_button = gr.Button(f"Run {model_name}")
263
  output = gr.Textbox(label="Status")
264
  img = gr.Image(label=model_name, height=300)
265
 
 
279
  inputs=[gr.Text(value= model_name,visible=False)],
280
  outputs=[gallery],
281
  )
282
+ run_button.click(fn=create_pipeline_logic, inputs=[prompt_text, gr.Text(value= model_name,visible=False), negative_prompt,
283
  seed,
284
  randomize_seed,
285
  width,