jaiswala xhluca commited on
Commit
294ebe1
·
1 Parent(s): e2b5505

Add A3-Qwen3.5-9B WorkArena-L2 results (10.6%) and update all comments (#14)

Browse files

- Add A3-Qwen3.5-9B WorkArena-L2 results (10.6%) and update all comments (f0b0214c2231d34f40d648cbaa1d9cda69a473cf)
- Add trajectories link to README (a35f1f19ff6c9bccea9721b90bb8c495af376bce)
- Clarify that A3-Synth uses WebArena environments but different tasks (56da91d56e1f8f38d9228f7bd71fea5190f5761f)
- Set benchmark_tuned=Yes for WebArena (91c446a4b286173bf001db07708b39b242e5fc8f)
- Remove redundant training data notes from comments (d7a5d720e476c05ed500f671e20e14198b518810)


Co-authored-by: Xing Han Lù <xhluca@users.noreply.huggingface.co>

results/A3-Qwen3.5-9B/README.md CHANGED
@@ -1,66 +1,76 @@
1
- ### A3-Qwen3.5-9B
2
 
3
- This agent is [GenericAgent](https://github.com/ServiceNow/AgentLab/blob/main/src/agentlab/agents/generic_agent/generic_agent.py) from [AgentLab](https://github.com/ServiceNow/AgentLab), fine-tuned using the Agent-as-Annotators (A3) pipeline.
4
 
5
- - **Model Name:** A3-Qwen3.5-9B
6
- - **Base Model:** Qwen/Qwen3.5-9B
7
- - **Model Architecture:**
8
- - Type: Vision-Language Model (VLM)
9
- - Architecture: Causal LM with vision encoder
10
- - Number of Parameters: 9B
11
- - **Input/Output Format:**
12
- - Input: Accessibility tree + Set-of-Mark (SoM) screenshot
13
- - Output: Text action in BrowserGym format
14
- - Flags:
15
- ```python
16
- GenericPromptFlags(
17
- obs=ObsFlags(
18
- use_html=False,
19
- use_ax_tree=True,
20
- use_tabs=True,
21
- use_focused_element=True,
22
- use_error_logs=True,
23
- use_history=True,
24
- use_past_error_logs=False,
25
- use_action_history=True,
26
- use_think_history=False,
27
- use_diff=False,
28
- html_type='pruned_html',
29
- use_screenshot=True,
30
- use_som=True,
31
- extract_visible_tag=True,
32
- extract_clickable_tag=True,
33
- extract_coords='False',
34
- filter_visible_elements_only=False,
35
- ),
36
- action=ActionFlags(
37
- action_set=HighLevelActionSetArgs(
38
- subsets=('webarena',),
39
- multiaction=False,
40
- strict=False,
41
- retry_with_force=True,
42
- demo_mode='off',
43
- ),
44
- long_description=False,
45
- individual_examples=False,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  ),
47
- use_plan=False,
48
- use_criticise=False,
49
- use_thinking=True,
50
- use_memory=False,
51
- use_concrete_example=True,
52
- use_abstract_example=True,
53
- use_hints=True,
54
- enable_chat=False,
55
- max_prompt_tokens=57344,
56
- be_cautious=True,
57
- extra_instructions=None,
58
- )
59
- ```
60
- - **Training Details:**
61
- - Dataset: WebSynth trajectories collected via the A3 pipeline (agent-generated annotations on real websites)
62
- - Fine-tuning method: Supervised Fine-Tuning (SFT) with FSDP
63
- - Temperature at inference: 0.6
64
- - **Paper Link:** https://arxiv.org/abs/2604.07776
65
- - **Code Repository:** https://github.com/McGill-NLP/agent-as-annotators
66
- - **License:** Apache-2.0
 
1
+ <div align="center">
2
 
3
+ # A3-Qwen3.5-9B
4
 
5
+ | [**📄 Paper**](https://arxiv.org/abs/2604.07776) | [**💾 Code**](https://github.com/McGill-NLP/agent-as-annotators) | [**🌐 Website**](https://agent-as-annotators.github.io) |
6
+ | :--: | :--: | :--: |
7
+ | [**🤗 Dataset**](https://huggingface.co/datasets/McGill-NLP/A3-Synth) | [**🤖 Models**](https://huggingface.co/collections/McGill-NLP/a3-agent-as-annotators-69d854ab5b1993b10efc3fba) | [**📦 PyPI**](https://pypi.org/project/agent-as-annotators/) |
8
+ | [**📊 Trajectories**](https://huggingface.co/datasets/xhluca/a3-qwen-3.5-9b-trajectories) | | |
9
+
10
+ </div>
11
+
12
+ This agent is [GenericAgent](https://github.com/ServiceNow/AgentLab/blob/main/src/agentlab/agents/generic_agent/generic_agent.py) from [AgentLab](https://github.com/ServiceNow/AgentLab), fine-tuned using the [Agent-as-Annotators (A3)](https://github.com/McGill-NLP/agent-as-annotators) framework.
13
+
14
+ ## Model
15
+
16
+ | | |
17
+ |---|---|
18
+ | **Base Model** | [Qwen/Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B) |
19
+ | **Type** | Vision-Language Model (VLM), 9B parameters |
20
+ | **Training Data** | [A3-Synth](https://huggingface.co/datasets/McGill-NLP/A3-Synth) trajectories, derived from WebArena environments but with entirely different, synthetically generated tasks (no benchmark tasks seen during training) |
21
+ | **Training Method** | Supervised Fine-Tuning (SFT) with FSDP |
22
+ | **Inference Temperature** | 0.6 |
23
+ | **License** | Apache-2.0 |
24
+
25
+ ## Input/Output
26
+
27
+ - **Input:** Accessibility tree + Set-of-Mark (SoM) screenshot
28
+ - **Output:** Text action in BrowserGym format
29
+
30
+ ## Configuration Flags
31
+
32
+ ```python
33
+ GenericPromptFlags(
34
+ obs=ObsFlags(
35
+ use_html=False,
36
+ use_ax_tree=True,
37
+ use_tabs=True,
38
+ use_focused_element=True,
39
+ use_error_logs=True,
40
+ use_history=True,
41
+ use_past_error_logs=False,
42
+ use_action_history=True,
43
+ use_think_history=False,
44
+ use_diff=False,
45
+ html_type='pruned_html',
46
+ use_screenshot=True,
47
+ use_som=True,
48
+ extract_visible_tag=True,
49
+ extract_clickable_tag=True,
50
+ extract_coords='False',
51
+ filter_visible_elements_only=False,
52
+ ),
53
+ action=ActionFlags(
54
+ action_set=HighLevelActionSetArgs(
55
+ subsets=('webarena',),
56
+ multiaction=False,
57
+ strict=False,
58
+ retry_with_force=True,
59
+ demo_mode='off',
60
  ),
61
+ long_description=False,
62
+ individual_examples=False,
63
+ ),
64
+ use_plan=False,
65
+ use_criticise=False,
66
+ use_thinking=True,
67
+ use_memory=False,
68
+ use_concrete_example=True,
69
+ use_abstract_example=True,
70
+ use_hints=True,
71
+ enable_chat=False,
72
+ max_prompt_tokens=57344,
73
+ be_cautious=True,
74
+ extra_instructions=None,
75
+ )
76
+ ```
 
 
 
 
results/A3-Qwen3.5-9B/miniwob.json CHANGED
@@ -10,7 +10,7 @@
10
  "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
- "comments": "625 tasks. Model not trained on MiniWoB data.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
 
10
  "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
+ "comments": "625 tasks. Fine-tuned on A3-Synth trajectories via the Agent-as-Annotators framework.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
results/A3-Qwen3.5-9B/visualwebarena.json CHANGED
@@ -6,11 +6,11 @@
6
  "benchmark": "VisualWebArena",
7
  "score": 33.7,
8
  "std_err": 1.6,
9
- "benchmark_specific": "Yes",
10
  "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
- "comments": "Combined visualwebarena-train (461 tasks) and visualwebarena-test (449 tasks) for a total of 910 tasks. Model fine-tuned on WebSynth trajectories.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
 
6
  "benchmark": "VisualWebArena",
7
  "score": 33.7,
8
  "std_err": 1.6,
9
+ "benchmark_specific": "No",
10
  "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
+ "comments": "910 tasks (full benchmark). Fine-tuned on A3-Synth trajectories via the Agent-as-Annotators framework. A3-Synth is derived from WebArena environments but uses entirely different, synthetically generated tasks (no VisualWebArena tasks seen during training).",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
results/A3-Qwen3.5-9B/webarena.json CHANGED
@@ -6,11 +6,11 @@
6
  "benchmark": "WebArena",
7
  "score": 42.1,
8
  "std_err": 1.7,
9
- "benchmark_specific": "Yes",
10
- "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
- "comments": "Combined webarena-train (431 tasks) and webarena-test (381 tasks) for a total of 812 tasks. Model fine-tuned on WebSynth trajectories.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
 
6
  "benchmark": "WebArena",
7
  "score": 42.1,
8
  "std_err": 1.7,
9
+ "benchmark_specific": "No",
10
+ "benchmark_tuned": "Yes",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
+ "comments": "812 tasks (full benchmark). Fine-tuned on A3-Synth trajectories via the Agent-as-Annotators framework. A3-Synth is derived from WebArena environments but uses entirely different, synthetically generated tasks.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
results/A3-Qwen3.5-9B/workarena-l1.json CHANGED
@@ -10,7 +10,7 @@
10
  "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
- "comments": "330 tasks. Model not trained on ServiceNow data.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
 
10
  "benchmark_tuned": "No",
11
  "followed_evaluation_protocol": "Yes",
12
  "reproducible": "Yes",
13
+ "comments": "330 tasks. Fine-tuned on A3-Synth trajectories via the Agent-as-Annotators framework.",
14
  "original_or_reproduced": "Original"
15
  }
16
  ]
results/A3-Qwen3.5-9B/workarena-l2.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "agent_name": "A3-Qwen3.5-9B",
4
+ "study_id": "2026-03-14_12-38-08_genericagent-checkpoints-qwen-qwen3-5-9b-web-pro-low-8903051-checkpoint-latest-on-workarena-l2-test-test",
5
+ "date_time": "2026-04-06 18:39:04",
6
+ "benchmark": "WorkArena-L2",
7
+ "score": 10.6,
8
+ "std_err": 1.7,
9
+ "benchmark_specific": "No",
10
+ "benchmark_tuned": "No",
11
+ "followed_evaluation_protocol": "Yes",
12
+ "reproducible": "Yes",
13
+ "comments": "341 tasks (full benchmark). Fine-tuned on A3-Synth trajectories via the Agent-as-Annotators framework.",
14
+ "original_or_reproduced": "Original"
15
+ }
16
+ ]