debjitpaul commited on
Commit ·
001af0b
1
Parent(s): f001c45
Updated citation font with Markdown for app.py and example submission
Browse files- app.py +4 -4
- submissions/example_submission.json +2 -2
app.py
CHANGED
|
@@ -375,15 +375,15 @@ def build_app() -> gr.Blocks:
|
|
| 375 |
scaffold_in = gr.Dropdown(
|
| 376 |
choices=["none", "ReAct", "CodeAct", "Plan-and-Execute", "Reflexion", "MCTS", "Custom"],
|
| 377 |
label="Scaffold",
|
| 378 |
-
value="
|
| 379 |
)
|
| 380 |
split_in = gr.Dropdown(
|
| 381 |
-
choices=["test", "full"],
|
| 382 |
label="Split evaluated",
|
| 383 |
-
value="
|
| 384 |
)
|
| 385 |
with gr.Column():
|
| 386 |
-
organization_in = gr.Textbox(label="Organization", placeholder="e.g.
|
| 387 |
contact_email_in = gr.Textbox(label="Contact email", placeholder="you@org.edu")
|
| 388 |
code_url_in = gr.Textbox(
|
| 389 |
label="Code URL (required)",
|
|
|
|
| 375 |
scaffold_in = gr.Dropdown(
|
| 376 |
choices=["none", "ReAct", "CodeAct", "Plan-and-Execute", "Reflexion", "MCTS", "Custom"],
|
| 377 |
label="Scaffold",
|
| 378 |
+
value="Custom",
|
| 379 |
)
|
| 380 |
split_in = gr.Dropdown(
|
| 381 |
+
choices=["test", "full", "dev"],
|
| 382 |
label="Split evaluated",
|
| 383 |
+
value="dev",
|
| 384 |
)
|
| 385 |
with gr.Column():
|
| 386 |
+
organization_in = gr.Textbox(label="Organization", placeholder="e.g. Hugging Face, OpenAI, Your University")
|
| 387 |
contact_email_in = gr.Textbox(label="Contact email", placeholder="you@org.edu")
|
| 388 |
code_url_in = gr.Textbox(
|
| 389 |
label="Code URL (required)",
|
submissions/example_submission.json
CHANGED
|
@@ -5,13 +5,13 @@
|
|
| 5 |
"base_model": "gpt-4o-2024-08-06",
|
| 6 |
"scaffold": "ReAct",
|
| 7 |
"tools_used": ["web_search", "python_interpreter"],
|
| 8 |
-
"organization": "
|
| 9 |
"contact_email": "submitter@example.org",
|
| 10 |
"paper_url": "https://arxiv.org/abs/2602.21143",
|
| 11 |
"code_url": "https://github.com/agentdeepsynthesis/deepsynth-baselines",
|
| 12 |
"submission_date": "2026-04-18",
|
| 13 |
"split": "dev",
|
| 14 |
-
"num_seeds":
|
| 15 |
"uses_external_retrieval": true,
|
| 16 |
"notes": "Baseline reproduction of Table 1, row 2 of the DeepSynth paper."
|
| 17 |
},
|
|
|
|
| 5 |
"base_model": "gpt-4o-2024-08-06",
|
| 6 |
"scaffold": "ReAct",
|
| 7 |
"tools_used": ["web_search", "python_interpreter"],
|
| 8 |
+
"organization": "Example University",
|
| 9 |
"contact_email": "submitter@example.org",
|
| 10 |
"paper_url": "https://arxiv.org/abs/2602.21143",
|
| 11 |
"code_url": "https://github.com/agentdeepsynthesis/deepsynth-baselines",
|
| 12 |
"submission_date": "2026-04-18",
|
| 13 |
"split": "dev",
|
| 14 |
+
"num_seeds": 0,
|
| 15 |
"uses_external_retrieval": true,
|
| 16 |
"notes": "Baseline reproduction of Table 1, row 2 of the DeepSynth paper."
|
| 17 |
},
|