Update README.md
Browse files
README.md
CHANGED
|
@@ -158,3 +158,29 @@ configs:
|
|
| 158 |
- split: train
|
| 159 |
path: persona/train-*
|
| 160 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
- split: train
|
| 159 |
path: persona/train-*
|
| 160 |
---
|
| 161 |
+
# MAPS: Multilingual Agent Perspective Survey
|
| 162 |
+
|
| 163 |
+
Check out our Multilingual Society Simulation research paper at [arXiv](https://arxiv.org/pdf/2512.07195), and code implementation at [GitHub](https://github.com/magicgh/MASim).
|
| 164 |
+
|
| 165 |
+
## Get Started
|
| 166 |
+
```py
|
| 167 |
+
from datasets import load_dataset
|
| 168 |
+
|
| 169 |
+
def load_global_opinions_question():
|
| 170 |
+
ds = load_dataset("magicgh/MAPS", "opinion", split="train")
|
| 171 |
+
return ds
|
| 172 |
+
|
| 173 |
+
def load_global_opinions_persona():
|
| 174 |
+
ds = load_dataset("magicgh/MAPS", "persona", split="train")
|
| 175 |
+
return ds
|
| 176 |
+
```
|
| 177 |
+
|
| 178 |
+
## Citation
|
| 179 |
+
```
|
| 180 |
+
@article{masim,
|
| 181 |
+
title={MASim: Multilingual Agent-Based Simulation for Social Science},
|
| 182 |
+
author={Zhang, Xuan and Zhang, Wenxuan and Wang, Anxu and Ng, See-Kiong and Deng, Yang},
|
| 183 |
+
journal={arXiv preprint arXiv:2512.07195},
|
| 184 |
+
year={2025}
|
| 185 |
+
}
|
| 186 |
+
```
|