Update app.py
Browse filesFix typo and add debug
app.py
CHANGED
@@ -75,7 +75,7 @@ with gr.Blocks(theme='kfahn/AnimalPose') as demo:
|
|
75 |
""")
|
76 |
with gr.Row():
|
77 |
with gr.Column():
|
78 |
-
prompts = gr.Textbox(label="Prompt", placeholder="black cocker spaniel sitting on a lawn, best quality)
|
79 |
negative_prompts = gr.Textbox(label="Negative Prompt", value="lowres, bad anatomy, missing ears, missing paws")
|
80 |
conditioning_image = gr.Image(label="Conditioning Image")
|
81 |
run_btn = gr.Button("Run")
|
@@ -92,4 +92,4 @@ with gr.Blocks(theme='kfahn/AnimalPose') as demo:
|
|
92 |
# report = wandb_report(report_url)
|
93 |
|
94 |
|
95 |
-
demo.launch()
|
|
|
75 |
""")
|
76 |
with gr.Row():
|
77 |
with gr.Column():
|
78 |
+
prompts = gr.Textbox(label="Prompt", placeholder="black cocker spaniel sitting on a lawn, best quality")
|
79 |
negative_prompts = gr.Textbox(label="Negative Prompt", value="lowres, bad anatomy, missing ears, missing paws")
|
80 |
conditioning_image = gr.Image(label="Conditioning Image")
|
81 |
run_btn = gr.Button("Run")
|
|
|
92 |
# report = wandb_report(report_url)
|
93 |
|
94 |
|
95 |
+
demo.launch(debut=True)
|