GridToM / README.md
AnnaLeee's picture
Update README.md
9ef380f verified
|
Raw
History Blame Contribute Delete
3.89 kB
<div align="center">
<img src="https://icml.cc/static/core/img/ICML-logo.svg" alt="conference_logo" height="80">
<h2>From Black Boxes to Transparent Minds: Evaluating and Enhancing the Theory of Mind in Multimodal Large Language Models</h2>
<p align="center">
<div style="line-height: 3;">
<a href="https://annaisavailable.github.io/index.html" target="_blank">Xinyang Li</a><sup>*</sup>,
<a href="https://scholar.google.com/citations?user=8hceDf0AAAAJ" target="_blank">Siqi Liu</a><sup>*</sup>,
<a href="https://scholar.google.com/citations?user=Cb29A3cAAAAJ" target="_blank">Bochao Zou</a><sup>†</sup>,
<a href="https://scholar.google.com/citations?user=A1gA9XIAAAAJ" target="_blank">Jiansheng Chen</a>,
<a href="https://scholar.google.com/citations?user=32hwVLEAAAAJ" target="_blank">Huimin Ma</a><sup>†</sup>
</div>
<br>
<div style="line-height: 3;">
<a href='https://annaisavailable.github.io/GridToM/' style="text-decoration:none;">
<img src='https://img.shields.io/badge/Project_Page-GridToM-green?logo=github&logoColor=white' alt='Project Page'>
</a>
<a href="https://arxiv.org/pdf/2506.14224" style="text-decoration:none;">
<img src='https://img.shields.io/badge/arXiv-2506.14224-b31b1b?logo=arxiv&logoColor=white' alt='arXiv'>
</a>
<a href="https://huggingface.co/datasets/AnnaLeee/GridToM" style="text-decoration:none;">
<img src='https://img.shields.io/badge/Huggingface-GridToM-ffb400?logo=huggingface&logoColor=white' alt='huggingface'>
</a>
</div>
<div style="line-height: 1.5;">
<b>University of Science and Technology Beijing</b>
<br>
*Indicates Equal Contribution,†Indicates Corresponding Author
</div>
</div>
## 🏆 Overview
This repository provides the code for the paper [ICML 2025] "From Black Boxes to Transparent Minds: Evaluating and Enhancing the Theory of Mind in Multimodal Large Language Models"
<div style="margin: 30px auto; display: block; text-align: center;">
<p align="center">
<img src="https://annaisavailable.github.io/GridToM/static/images/introduction.png"
style="width: 95%; border-radius: 10px; box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.2); display: inline-block;">
</p>
</div>
## ⚙️ Installation
```
conda create -n gridtom python=3.12
conda activate gridtom
# Please install PyTorch according to your CUDA version.
conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia
pip install -r requirements.txt
```
## ⚡️ Quick Start
```
chmod 700 *.sh
./init_belief.sh LLaVA-NeXT-Video-7B-hf
./init_belief.sh Qwen2-VL-7B-Instruct
./evaluate.sh LLaVA-NeXT-Video-7B-hf
./evaluate.sh Qwen2-VL-7B-Instruct
./save_states.sh LLaVA-NeXT-Video-7B-hf
./save_states.sh Qwen2-VL-7B-Instruct
./interv_evaluate.sh LLaVA-NeXT-Video-7B-hf
./interv_evaluate.sh Qwen2-VL-7B-Instruct
```
<!-- Citation -->
## 🔎 Citation
Please cite the paper and star this repo if you find it interesting/useful, thanks!
```bibtex
@article{li2025black,
title={From Black Boxes to Transparent Minds: Evaluating and Enhancing the Theory of Mind in Multimodal Large Language Models},
author={Li, Xinyang and Liu, Siqi and Zou, Bochao and Chen, Jiansheng and Ma, Huimin},
journal={arXiv preprint arXiv:2506.14224},
year={2025}
}
```
## 🌟 Star History
<a href="https://www.star-history.com/#annaisavailable/GridToM&Date">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=annaisavailable/GridToM&type=Date&theme=dark" />
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=annaisavailable/GridToM&type=Date" />
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=annaisavailable/GridToM&type=Date" />
</picture>
</a>