Spaces:
Runtime error
Runtime error
Commit
·
51cebb2
1
Parent(s):
6a648dd
correct value holder in gradio
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ def main():
|
|
97 |
iface = gr.Interface(
|
98 |
fn=inference.process_image_and_draw_circle,
|
99 |
inputs=[gr.Image(type="pil", label = "Upload Image"),
|
100 |
-
gr.Textbox(label = "Prompt", placeholder='Enter a prompt to find in the image',
|
101 |
outputs=gr.Image(type="pil"),
|
102 |
title="PTA-Text: A **Text-only** Click Model",
|
103 |
description="PTA is a small part of our bigger model - PTA-1 (Prompt-To-Automation). \nInstructions: Upload a UI image and enter a text finding prompt to see the model's prediction. \nLimitations: Currently, limited to single screen images."
|
|
|
97 |
iface = gr.Interface(
|
98 |
fn=inference.process_image_and_draw_circle,
|
99 |
inputs=[gr.Image(type="pil", label = "Upload Image"),
|
100 |
+
gr.Textbox(label = "Prompt", placeholder='Enter a prompt to find in the image', value='Click on the text "Login"')],
|
101 |
outputs=gr.Image(type="pil"),
|
102 |
title="PTA-Text: A **Text-only** Click Model",
|
103 |
description="PTA is a small part of our bigger model - PTA-1 (Prompt-To-Automation). \nInstructions: Upload a UI image and enter a text finding prompt to see the model's prediction. \nLimitations: Currently, limited to single screen images."
|