/Agent-FLAN

[ACL2024 Findings] Agent-FLAN: Designing Data and Methods of Effective Agent Tuning for Large Language Models

Apache License 2.0Apache-2.0

Agent-FLAN: Designing Data and Methods of Effective Agent Tuning for Large Language Models

arXiv license Open in OpenXLab

โœจ Introduction

[๐Ÿค— HuggingFace] [๐Ÿงฐ OpenXLab] [๐Ÿ“ƒ Paper] [๐ŸŒ Project Page]

Open-sourced Large Language Models (LLMs) have achieved great success in various NLP tasks, however, they are still far inferior to API-based models when acting as agents. How to integrate agent ability into general LLMs becomes a crucial and urgent problem. This paper first delivers three key observations: (1) the current agent training corpus is entangled with both formats following and agent reasoning, which significantly shifts from the distribution of its pre-training data; (2) LLMs exhibit different learning speeds on the capabilities required by agent tasks; and (3) current approaches have side-effects when improving agent abilities by introducing hallucinations. Based on the above findings, we propose Agent-FLAN to effectively Fine-tune LANguage models for Agents. Through careful decomposition and redesign of the training corpus, Agent-FLAN enables Llama2-7B to outperform prior best works by 3.5% across various agent evaluation datasets. With comprehensively constructed negative samples, Agent-FLAN greatly alleviates the hallucination issues based on our established evaluation benchmark. Besides, it consistently improves the agent capability of LLMs when scaling model sizes while slightly enhancing the general capability of LLMs.

๐Ÿš€ What's New

  • [2024.3.21] Paper available on ArXiv. ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ
  • [2024.3.20] Release the dataset and model checkpoint for Agent-FLAN. ๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰

โ™Ÿ๏ธ Agent-FLAN

Agent-FLAN series are finetuned on AgentInstruct and Toolbench by applying the data generation pipeline proposed in Agent-FLAN paper, which holds strong abilities on various agent tasks and tool utilization~

Comparison of recent agent tuning approaches on Held-In, Held-Out tasks. Performances are normalized with GPT-4 results for better visualization. * denotes our re-implementation for a fair comparison.

๐Ÿค— HuggingFace Model & Dataset

Agent-FLAN is produced by mixed training on AgentInstruct, ToolBench, and ShareGPT datasets from the Llama2-chat series.

The models follow the conversation format of Llama-2-chat, with the template protocol as:

dict(role='user', begin='<|Human|>เต†', end='\n '),
dict(role='system', begin='<|Human|>เต†', end='\n '),
dict(role='assistant', begin='<|Assistant|>เต†', end='เดฟ\n '),

The 7B model is available on Huggingface & OpenXLab model hub.

Model Huggingface Repo OpenXLab Repo
Agent-FLAN-7B Model Link Model Link

The Agent-FLAN dataset is also available on Huggingface dataset hub.

Dataset Huggingface Repo
Agent-FLAN Dataset Link

๐Ÿ’ซ Detailed Results

Main results of Agent-FLAN. Agent-FLAN significantly outperforms previous agent-tuning approaches by a large margin on both held-in and held-out tasks. * denotes our re-implementation with the same amount of training data for a fair comparison. Since FireAct does not train on AgentInstruct dataset, we omit its performance on the HELD-IN set. Bold: the best in API-based and open-sourced models.

โค๏ธ Acknowledgements

Agent-FLAN is built with Lagent and T-Eval. Thanks for their awesome work!

๐Ÿ–Š๏ธ Citation

If you find this project useful in your research, please consider cite:

@article{chen2024agent,
  title={Agent-FLAN: Designing Data and Methods of Effective Agent Tuning for Large Language Models},
  author={Chen, Zehui and Liu, Kuikun and Wang, Qiuchen and Zhang, Wenwei and Liu, Jiangning and Lin, Dahua and Chen, Kai and Zhao, Feng},
  journal={arXiv preprint arXiv:2403.12881},
  year={2024}
}

๐Ÿ’ณ License

This project is released under the Apache 2.0 license.