magicgh commited on
Commit
bb1c5bf
·
verified ·
1 Parent(s): aae8603

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
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
+ ```