Spaces:
Running on Zero
Running on Zero
Commit Β·
751a42a
1
Parent(s): f9d20f4
rename to gui demo
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ ImageFile.LOAD_TRUNCATED_IMAGES = True
|
|
| 22 |
|
| 23 |
# ββ Constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 24 |
|
| 25 |
-
MODEL_ID = "allenai/MolmoPoint-
|
| 26 |
MAX_IMAGE_SIZE = 512
|
| 27 |
POINT_SIZE = 0.01
|
| 28 |
MAX_NEW_TOKENS = 2048
|
|
@@ -183,10 +183,10 @@ css = """
|
|
| 183 |
"""
|
| 184 |
|
| 185 |
with gr.Blocks() as demo:
|
| 186 |
-
gr.Markdown("# **MolmoPoint-
|
| 187 |
gr.Markdown(
|
| 188 |
"Single-point prediction on GUI screenshots using the "
|
| 189 |
-
"[MolmoPoint-
|
| 190 |
"Given a natural language instruction, the model predicts the single UI element to click."
|
| 191 |
)
|
| 192 |
|
|
|
|
| 22 |
|
| 23 |
# ββ Constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 24 |
|
| 25 |
+
MODEL_ID = "allenai/MolmoPoint-GUI-8B"
|
| 26 |
MAX_IMAGE_SIZE = 512
|
| 27 |
POINT_SIZE = 0.01
|
| 28 |
MAX_NEW_TOKENS = 2048
|
|
|
|
| 183 |
"""
|
| 184 |
|
| 185 |
with gr.Blocks() as demo:
|
| 186 |
+
gr.Markdown("# **MolmoPoint-GUI-8B Demo (GUI-Specialized)**", elem_id="main-title")
|
| 187 |
gr.Markdown(
|
| 188 |
"Single-point prediction on GUI screenshots using the "
|
| 189 |
+
"[MolmoPoint-GUI-8B](https://huggingface.co/allenai/MolmoPoint-GUI-8B) model. "
|
| 190 |
"Given a natural language instruction, the model predicts the single UI element to click."
|
| 191 |
)
|
| 192 |
|