Skip to content

Official implementation for NeurIPS'24 paper: MDAgents: An Adaptive Collaboration of LLMs for Medical Decision-Making

Notifications You must be signed in to change notification settings

mitmedialab/MDAgents

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[NeurIPS 2024 Oral] MDAgents: An Adaptive Collaboration of LLMs for Medical Decision-Making

📖 Paper    🤖 Project Page

Foundation models are becoming invaluable tools in medicine. Despite their promise, the strategic deployment of Large Language Models (LLMs) for effective utility in complex medical tasks remains an open question. We introduce a novel framework, Medical Decision-making Agents (MDAgents) which aims to address this gap by automatically assigning a collaboration structure for a team of LLMs. The assigned solo or group collaboration structure is tailored to the medical task at hand, a simple emulation of how real-world medical decision-making processes adapt to tasks of different complexities. We evaluate our framework and baseline methods with state-of-the-art LLMs across a suite of medical benchmarks containing real-world medical knowledge and challenging clinical diagnosis. MDAgents achieved the best performance in seven out of ten benchmarks on the tasks that require an understanding of medical knowledge and multi-modal reasoning, showing a significant improvement of up to 11.8% compared to previous multi-agent setting (p < 0.05). Ablation studies reveal that our MDAgents effectively determines medical complexity to optimize for efficiency and accuracy across diverse medical tasks. We also explore the dynamics of group consensus, offering insights into how collaborative agents could behave in complex clinical team dynamics.

image image



Quick Start

Create a new virtual environment, e.g. with conda

~$ conda create -n mdagents python>=3.9

Install the required packages:

~$ pip install -r requirements.txt

Activate the environment:

~$ conda activate mdagents

Set up API keys:

~$ export openai_api_key="your_openai_api_key_here"
~$ export genai_api_key="your_genai_api_key_here"

Replace your_openai_api_key_here and your_genai_api_key_here with your actual API keys. Prepare the data:

~$ mkdir -p ./data

Place your JSON data files in the ./data directory. Ensure that the files are named according to the dataset they represent, e.g., medqa.json, pubmedqa.json, etc.

Your directory structure should look like this:

mdagents/
├── data/
│   ├── medqa.json
│   ├── pubmedqa.json
│   └── ... (other dataset files)
├── main.py
├── utils.py
├── requirements.txt
└── README.md

Dataset


  1. MedQA: https://github.com/jind11/MedQA
  2. MedMCQA: https://github.com/medmcqa/medmcqa
  3. PubMedQA: https://github.com/pubmedqa/pubmedqa
  4. DDXPlus: https://github.com/mila-iqia/ddxplus
  5. SymCat: https://github.com/teliov/SymCat-to-synthea
  6. JAMA & Medbullets: https://github.com/xiaoman-zhang/PMC-VQA
  7. PMC-VQA: https://github.com/xiaoman-zhang/PMC-VQA
  8. Path-VQA: https://github.com/UCSD-AI4H/PathVQA
  9. MIMIC-CXR: https://github.com/baeseongsu/mimic-cxr-vqa
  10. MedVidQA: https://github.com/deepaknlp/MedVidQACL

Comparison to Previous Single Agent/Multi-Agent Methods


Inference

~$ python3 main.py --model {gpt-3.5, gpt-4, gpt-4v, gpt-4o, gemini-pro, gemini-pro-vision} --dataset {medqa, pubmedqa, ddxplus, jama, symcat, medbullets, jama, pmc-vqa, path-vqa, mimic-cxr, medvidqa}

Main Results

image image


Ablation 1: Impact of Complexity Selection

image


Ablation 2: Impact of Number of Agents and Temperatures in Group Setting

image


Ablation 3: Impact of Moderator’s Review and RAG

image


Cite Us

If you find this repository useful in your research, please cite our paper:

@misc{kim2024mdagentsadaptivecollaborationllms,
      title={MDAgents: An Adaptive Collaboration of LLMs for Medical Decision-Making}, 
      author={Yubin Kim and Chanwoo Park and Hyewon Jeong and Yik Siu Chan and Xuhai Xu and Daniel McDuff and Hyeonhoon Lee and Marzyeh Ghassemi and Cynthia Breazeal and Hae Won Park},
      year={2024},
      eprint={2404.15155},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2404.15155}, 
}

Contact

Yubin Kim (ybkim95@mit.edu)

About

Official implementation for NeurIPS'24 paper: MDAgents: An Adaptive Collaboration of LLMs for Medical Decision-Making

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages