Skip to content

[NeurIPS 2024] Official implementation for paper "Can Graph Learning Improve Planning in LLM-based Agents?"

License

Notifications You must be signed in to change notification settings

WxxShirley/GNN4TaskPlan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

51 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Can Graph Learning Improve Planning in LLM-based Agents?

Paper

This is the official implementation for our NeurIPS 2024 paper "Can Graph Learning Improve Planning in LLM-based Agents?" [ไธญๆ–‡]

task

Task planning aims to break down complex user request into solvable sub-tasks, thereby fulfilling the original request. In this context, the sub-tasks can be naturally viewed as a graph where nodes represent the sub-tasks, and the edges denote dependencies among them. Consequently, task planning is a decision-making problem that involves selecting a connected path within the corresponding graph and invoking it. In this paper, we first provide theoretical analysis, showing that the biases of attention and auto-regressive loss impede LLM's ability to effectively solve decision-making on graphs. Based on the theoretical analysis, we introduce an additional GNN for sub-task retrieval, available in both training-free and training-based variants. The experiments on diverse LLMs and planning benchmarks demonstrate that the proposed method outperforms existing solutions with much less computation time.

Feel free to cite this work if you find it useful to you! ๐Ÿ˜„

@article{wu2024graph,
  title={Can Graph Learning Improve Task Planning?},
  author={Xixi Wu and Yifei Shen and Caihua Shan and Kaitao Song and Siwei Wang and Bohang Zhang and Jiarui Feng and Hong Cheng and Wei Chen and Yun Xiong and Dongsheng Li},
  journal={arXiv preprint arXiv:2405.19119},
  year={2024}
}

๐Ÿ”ฅ News

  • Oct 14 2024 ๐Ÿ“ We posted the second version of our paper, a Chinese blog, and released the implementation of baseline method GraphToken.
  • Sep 26 2024 ๐ŸŽ‰ Our paper is accepted by NeurIPS 2024. New version of paper, implementation of other baselines, and blogs will be released soon!
  • May 30 2024 ๐Ÿ“š We posted the first version of our paper!
  • May 29 2024 ๐Ÿš€ We released the datasets and codes of GNN4TaskPlan!

Table of Contents

Environment Setup

pip install -r requirements.txt

Run the above command to install required Python packages.

Deploy Open-sourced LLMs

For running LLM's direct inference or GraphSearch, our codes are implemented as deploying LLMs as API services using FastChat to the localhost:8008 endpoint.

  • Installing FastChat

    pip3 install "fschat[model_worker,webui]"
    pip3 install vllm
  • Deploying LLM

    python3 -m fastchat.serve.controller --host 127.0.0.1 
    
    # Specify the LLM to be deployed, take CodeLlama-13B as an example
    python3 -m fastchat.serve.vllm_worker --model-path codellama/CodeLlama-13b-Instruct-hf --host 127.0.0.1
    # Commands for other experimental LLMs
    # python3 -m fastchat.serve.vllm_worker --model-path lmsys/vicuna-13b-v1.5 --host 127.0.0.1
    # python3 -m fastchat.serve.vllm_worker --model-path codellama/CodeLlama-7b-Instruct-hf --host 127.0.0.1
    # python3 -m fastchat.serve.vllm_worker --model-path mistralai/Mistral-7B-Instruct-v0.2 --host 127.0.0.1
    # python3 -m fastchat.serve.vllm_worker --model-path baichuan-inc/Baichuan2-13B-Chat --host 127.0.0.1
    
    python3 -m fastchat.serve.openai_api_server --host 127.0.0.1 --port 8008

    If you use devices from platforms like AutoDL, you can refer to the following running scripts and trouble-shooting:

    Commands to depoly the LLM services
    python3 -m fastchat.serve.controller --host 0.0.0.0 
    # `--model-path` an example local path of the LLM
    # `--num-gpus` number of available GPUs
    python3 -m fastchat.serve.vllm_worker --model-path /root/autodl-tmp/models/AI-ModelScope/Mistral-7B-Instruct-v0.2 --host 127.0.0.1  --num-gpus 2 
    python3 -m fastchat.serve.openai_api_server --host 127.0.0.1  --port 8008 

    If you encounter the following error, just comment Lines 227-228 in site-packages/vllm/engine/async_llm_engine.py

    2024-07-22 17:30:50 | ERROR | stderr |   File "/root/miniconda3/lib/python3.8/site-packages/vllm/engine/async_llm_engine.py", line 228, in _run_workers_async
    2024-07-22 17:30:50 | ERROR | stderr |     assert output == other_output
    2024-07-22 17:30:50 | ERROR | stderr | AssertionError
    

    If running the command of vllm_worker leads to failures, you can either switch to the model_worker or comment above assertion codes.

Overview

.
โ”œโ”€โ”€ GraphToken                     --> Ours implementation of the training-required baseline: GraphToken
โ”œโ”€โ”€ README.assets    
โ”œโ”€โ”€ README.md       
โ”œโ”€โ”€ data                           --> Provide all experimental datasets [HuggingFace, Multimedia, DailyLife, TMDB, and UltraTool]
โ”‚   โ”œโ”€โ”€ dailylife
โ”‚   โ”œโ”€โ”€ huggingface
โ”‚   โ”œโ”€โ”€ multimedia
โ”‚   โ”œโ”€โ”€ raw                        --> Original files from RestBench and UltraTool
โ”‚   โ”‚   โ””โ”€โ”€ RestBench                    `https://github.com/Yifan-Song793/RestGPT`
โ”‚ย ย  โ”‚ย ย  โ””โ”€โ”€ ultratool                    `https://github.com/JoeYing1019/UltraTool`
โ”‚   โ”œโ”€โ”€ raw_process_restgpt.py     --> Codes for processing RestBench
โ”‚   โ”œโ”€โ”€ raw_process_ultratool.py   --> Codes for processing UltraTool
โ”‚   โ”œโ”€โ”€ split_data.py              --> Codes for splitting testset
โ”‚ย ย  โ”œโ”€โ”€ tmdb
โ”‚ย ย  โ””โ”€โ”€ ultratool
โ”œโ”€โ”€ evaluate.py                    --> Codes for evaluation 
โ”œโ”€โ”€ finetunellm                    --> Codes for fine-tuning LLMs and then make direct inference based on fine-tuned LLMs
โ”œโ”€โ”€ finetunellm_script.sh          --> Scripts for fine-tuning LLMs
โ”œโ”€โ”€ prediction                     --> Results of Task Planning
โ”œโ”€โ”€ requirements.txt     
โ”œโ”€โ”€ trainfree                      --> Codes for training-free methods (Direct, GraphSearch, and SGC)
โ”œโ”€โ”€ trainfree_script.sh            --> Scripts for training-free methods
โ”œโ”€โ”€ traingnn                       --> Codes for training GNNs
โ”œโ”€โ”€ traingnn_reproduce.sh          --> Scripts for reproducing reported GNN / LM+GNN results
โ””โ”€โ”€ utils                 

This repo provides both training-free and training-based methods.

Besides, we provide source codes for fine-tuning LLMs using LoRA on splitted training data. Explanations of these contents will be detailed as follows.

Datasets

Five experimental datasets (HuggingFace, Multimedia, Daily Life from TaskBench, TMDB from RestBench), and UltraTool are under the data folder.

Each dataset contains the following files:

  • data.json Detailed dataset, with each sample has a user request, ground-truth decomposed task steps, and task invocation path
  • graph_desc.json Detailed task graph
  • tool_desc.json Only present the nodes' information within the task graph
  • user_requests.json Original user requests
  • split_ids.json Give the formal split of testset

As dataset from RestBench only contains orignal request and ground-truth API sequences, we have reformatted this dataset to align with experiments, including assigning a unique name to each API, constructing a task graph, and finally reformatting original data samples. Processing details are covered in raw_process_restgpt.py.

To demonstrate scalability with large task graphs, we introduced a new dataset, UltraTool (ACL2024 Findings). The original data, processing details, and reformatted data are well-organized in the dataset folder. This dataset includes 260 distinct tasks. The processing details involve filtering data samples with invoked tasks >= 2, retaining valid tasks with appearance counts >= 5, constructing task graphs based on the filtered tasks and trajectories, and finally prompting GPT-4 to fill in the steps.

Training-free Methods

Code Intro

Codes of training-free modes are under the trainfree folder:

  • Direct LLM's direct inference (default setting - 1-shot in-context learning). Implementation refers to TaskBench.
  • GraphSearch LLM performs iterative search on the task graph to select an optimal invocation path, including GreedySearch, AdaptiveSearch, and BeamSearch three variants. Implementation refers to ControlLLM.
  • SGC Our training-free SGC method.

Besides, we also provide two improved prompt templates, 2-shot and PlaG, to investigate the orthogonal effectiveness of our method.

โ”œโ”€โ”€ trainfree
โ”‚ย ย  โ”œโ”€โ”€ direct.py               --> LLM's direct inference
โ”‚ย ย  โ”œโ”€โ”€ direct_diffprompt.py    --> LLM's direct inference under improved prompts, including 1) more in-context learning examples and 2) plan like a graph (PlaG)
โ”‚ย ย  โ”œโ”€โ”€ graphsearch.py          --> GraphSearch method
โ”‚ย ย  โ””โ”€โ”€ sgc.py                  --> SGC method

Reproducibility

Running scripts can be found in trainfree_script.sh.

Hint You have to first run the Direct Inference to obtain any LLM's direct inference results to facilitate SGC or GraphSearch.

Training GNNs

Codes of training-based GNNs are under the traingnn folder:

โ”œโ”€โ”€ traingnn
โ”‚   โ”œโ”€โ”€ gnn.py              --> GNN encoder implementation, including SGC, GCN, GAT, SAGE, GIN, and TransformerConv
โ”‚   โ”œโ”€โ”€ main.py             --> Training GNN and then testing the performance
โ”‚   โ”œโ”€โ”€ model.py            --> LM+GNN model
โ”‚   โ””โ”€โ”€ sampler.py          --> Sampling object to prepare training triplets `<step, positive task, negative task>`
โ”œโ”€โ”€ traingnn_reproduce.sh   --> Scripts for reproducing all experimental results

Specifically, we explain the core arguments of main.py:

  • lm_name: Name of LM encoder with default choice as intfloat/e5-large
  • gnn_name: Name of GNN encoder with choices [SGC, GCN, GAT, SAGE, GIN, TransformerConv]
  • gnn_hidden_dim: Dimension of hidden layers within GNN
  • num_negatives: Number of negative samples per positive task with default setting as 2
  • text_negative: Whether the negative samples are textually similar to positive task
  • lm_frozen: Whether the parameters of LM are frozen. 1 denotes the GNN-only mode and 0 denotes the LM+GNN co-trained mode.
# HuggingFace - GNN only
python main.py --lm_frozen=1 --epoch=10 --text_negative=1 --gnn_name=SAGE --lr=0.001

# HuggingFace - LM+GNN co-train
python main.py --lm_frozen=0 --epoch=20 --text_negative=1 --gnn_name=SAGE
# HuggingFace - LM+GNN co-train (limited GPU requires smaller batch_size)
python main.py --lm_frozen=0 --epoch=10 --text_negative=1 --gnn_name=SAGE --batch_size=256

More running scripts can be found in traingnn_reproduce.sh.

Fine-tuning LLMs

โ”œโ”€โ”€ finetunellm
โ”‚ย ย  โ”œโ”€โ”€ inference.py         --> Direct inference of fine-tuned LLMs
โ”‚ย ย  โ”œโ”€โ”€ main.py              --> Fine-tuning LLM
โ”‚ย ย  โ””โ”€โ”€ user_prompt.py       --> Instruction Template

Codes of fine-tuning LLMs are under the finetunellm folder:

  • LLM Fine-tune Using LoRA to fine-tune a LLM with training data coming from the ground-truth <user_request, decomposed task steps, task invocation path> triplets. During experiments, we fine-tune LLMs of different parameter scales, including CodeLLaMA-7B and Vicuna-13B.
  • Inference based on Fine-tuned LLMs Making direct inference based on fine-tuned LLMs. You have to specify the LLM's name and the ckpt_dir.

Running scripts can be found in finetunellm_script.sh and we use 2 NVIDIA A100-80G GPUs for fine-tuning LLMs.

Evaluation

evaluate.py provides a evaluation of task planning result, and metrics including Node-F1, Link-F1, Node-Hallucination (both Macro and Micro), and Link-Hallucination (both Macro and Micro).

To facilitate reproducibility, we have provided the direct inference results of CodeLLaMA-13B and Mistral-7B on HuggingFace dataset under the prediction folder.

For evaluation, you have to specify the LLM's name, dataset, and the method (for example, direct denotes LLM's direct inference):

python evaluate.py --llm=CodeLlama-13b --dataset=huggingface --method=direct

And the result is as follows (NF - Node-F1, LF - Link-F1, Acc - Accuracy, NH-1 - Micro Node Hallucination Rate, NH-2 - Macro Node Hallucination Rate, LH-1 - Micro Link Hallucination Rate, LH-2 - Macro Link Hallucination Rate):

+-------------+---------------+-------+--------+--------+--------+--------+--------+--------+--------+
|   Dataset   |      LLM      |  Mode |   NF   |   LF   |  Acc   |  NH-1  |  NH-2  |  LH-1  |  LH-2  |
+-------------+---------------+-------+--------+--------+--------+--------+--------+--------+--------+
| huggingface | CodeLlama-13b | chain | 0.5755 | 0.2888 | 0.1429 | 0.1656 | 0.4306 | 0.4228 | 0.6338 |
+-------------+---------------+-------+--------+--------+--------+--------+--------+--------+--------+

Implementation of Baselines

We provide our reproduction of the baseline method, GraphToken, in the GraphToken folder. Since this method does not have an official implementation, we reproduced it based on the original paper while tailoring it to the planning scenario. Running scripts are available in GraphToken/run.sh. Feel free to adjust training configurations, e.g., batch_size, eval_batch_size, according to your experimental devices.

Perozzi, Bryan, et al. "Let Your Graph Do the Talking: Encoding Structured Data for LLMs." arXiv preprint, 2024.

TODO

  • [Code] Release all related codes of open-sourced LLMs
  • [Code] Release training-free codes of GPT-series
  • [Docs] Provide a Chinese version README
  • [Result] Provide direct inference results of several LLMs
  • [Resource] Provide ckpt of both GNN and LM+GNN for reproducibility
  • [Resource] Provide processing codes for RestBench and UltraTool
  • [Code] Release baseline methods' implementation

Acknowledgement

We sincerely thank the following repositories for their valuable insights and contributions to our paper and implementation:

  • TaskBench We highly recommend this high-quality dataset and the official inference codes it provides.
  • RestBench and UltraTool We appreciate the datasets released by these projects.
  • G-Retrieval We referenced this repository to reproduce the GraphToken baseline, as both utilize a similar architecture that employs GNN outputs as graph tokens for LLM input.
  • TAPE We referenced its official implementation to reproduce this method on planning tasks.

๐Ÿ“ฎ If your still have other questions, you can open an issue or contact via e-mail: [email protected]

About

[NeurIPS 2024] Official implementation for paper "Can Graph Learning Improve Planning in LLM-based Agents?"

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published