KikiQiQi commited on
Commit
1b95ec2
1 Parent(s): fc42a60

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -1
README.md CHANGED
@@ -35,4 +35,41 @@ configs:
35
  data_files:
36
  - split: test
37
  path: simulbench_role.jsonl
38
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  data_files:
36
  - split: test
37
  path: simulbench_role.jsonl
38
+ ---
39
+
40
+ ## Dataset Formats
41
+ ```jsonl
42
+ {
43
+ "id": "...",
44
+ "task_description": "...",
45
+ "act": "..."
46
+ }
47
+ ```
48
+
49
+ ## Dataset Loader
50
+
51
+ The subsets for SimulBench can be loaded as follows:
52
+ ```python
53
+ from dataset import load_dataset
54
+
55
+ all_tasks = load_dataset("SimulBench/SimulBench", "all", split="test")
56
+ ```
57
+ Other available subsets are: `hard`, `subjective`, `objective`, `system`, `tool`, `role`.
58
+
59
+
60
+ ## Acknowledgements
61
+
62
+ The simulation tasks are sourced from [Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts) with modifications.
63
+
64
+ ## Citation Information
65
+
66
+ ```latex
67
+ @article{simulbench2024,
68
+ title={SimulBench: Evaluating LLMs with Diverse Simulation Tasks},
69
+ author={Qi Jia, Xiang Yue, Tianyu Zheng, Jie Huang, and Bill Yuchen Lin},
70
+ year={2024},
71
+ eprint={},
72
+ archivePrefix={arXiv},
73
+ primaryClass={cs.CL}
74
+ }
75
+ ```