Views
No views yet
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base_model = AutoModelForCausalLM.from_pretrained(
5 "Qwen/Qwen3-8B",
6 device_map="auto",
7 torch_dtype="auto",
8)
9model = PeftModel.from_pretrained(base_model, "billyenrizky/Qwen3-8B-FormFactory-GRPO-LoRA")
10tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-8B")| Split | Nonzero Rate | Avg Reward |
|---|---|---|
| Val | 100.0% | 0.670 |
| Test | 100.0% | 0.669 |
1@article{brillian2026browser,
2 title={Browser-in-the-Loop: Reinforcement Fine-Tuning LLM Agents for Web Form Filling},
3 author={Brillian, Muhammad Enrizky},
4 year={2026}
5}
6
7@article{li2025formfactory,
8 title={FormFactory: An Interactive Benchmarking Suite for Multimodal Form-Filling Agents},
9 author={Li, B. and Wang, Y. and Fei, H. and Li, J. and Ji, W. and Lee, M.-L. and Hsu, W.},
10 journal={arXiv preprint arXiv:2506.01520},
11 year={2025}
12}