jamepark3922 commited on
Commit
751a42a
Β·
1 Parent(s): f9d20f4

rename to gui demo

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -22,7 +22,7 @@ ImageFile.LOAD_TRUNCATED_IMAGES = True
22
 
23
  # ── Constants ──────────────────────────────────────────────────────────────────
24
 
25
- MODEL_ID = "allenai/MolmoPoint-Img-8B"
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-Img-8B Demo (GUI-Specialized)**", elem_id="main-title")
187
  gr.Markdown(
188
  "Single-point prediction on GUI screenshots using the "
189
- "[MolmoPoint-Img-8B](https://huggingface.co/allenai/MolmoPoint-Img-8B) model. "
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