Peng Ding commited on
Commit
213d0a7
1 Parent(s): c1997f1

add readme

Browse files
Files changed (2) hide show
  1. README.md +73 -0
  2. direct_download_data.png +3 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # data
2
+
3
+ If you are looking for our intermediate labeling version, please refer to [mango-ttic/data-intermediate](https://huggingface.co/datasets/mango-ttic/data-intermediate)
4
+
5
+ Find more about us at [mango.ttic.edu](https://mango.ttic.edu)
6
+
7
+ ## Folder Structure
8
+
9
+ Each folder inside `data` contains the cleaned up files used during LLM inference and results evaluations. Here is the tree structure from game `data/night` .
10
+
11
+ ```bash
12
+ data/night/
13
+ ├── night.actions.json # list of mentioned actions
14
+ ├── night.all2all.json # all simple paths between any 2 locations
15
+ ├── night.all_pairs.json # all connectivity between any 2 locations
16
+ ├── night.edges.json # list of all edges
17
+ ├── night.locations.json # list of all locations
18
+ └── night.walkthrough # enriched walkthrough exported from Jericho simulator
19
+ ```
20
+
21
+ ## Variations
22
+
23
+ <!-- ### 70-step vs all-step version
24
+
25
+ In our paper, we benchmark using the first 70 steps of the walkthrough from each game. We also provide all-step versions of both `data` and `data` collection. -->
26
+
27
+ ### Word-only & Word+ID
28
+
29
+ * **Word-only** `data.tar.zst`: Nodes are annotated by additional descriptive text to distinguish different locations with similar names.
30
+
31
+ * **Word + Object ID** `data-objid.tar.zst`: variation of the word-only version, where nodes are labeled using minimaly fixed names with object id from Jericho simulator.
32
+
33
+ * **Word + Random ID** `data-randid.tar.zst`: variation of the Jericho ID version, where the Jericho object id replaced with randomly generated integer.
34
+
35
+ We primarily rely on the **word-only** version as benchmark, yet providing word+ID version for diverse benchmark settings.
36
+
37
+ ## How to use
38
+
39
+ We use `data.tar.zst` as an example here.
40
+
41
+ ### 1. download from Huggingface
42
+
43
+ #### by directly download
44
+
45
+ ![](direct_download_data.png)
46
+
47
+ #### by git
48
+
49
+ Make sure you have [git-lfs](https://git-lfs.com) installed
50
+
51
+ ```bash
52
+ git lfs install
53
+ git clone https://huggingface.co/datasets/mango-ttic/data
54
+
55
+ # or, use hf-mirror if your connection to huggingface.co is slow
56
+ # git clone https://hf-mirror.com/datasets/mango-ttic/data
57
+ ```
58
+
59
+ ### 2. decompress
60
+
61
+ Because some json files are huge, we use tar.zst to package the data efficiently.
62
+
63
+ silently decompress
64
+
65
+ ```bash
66
+ tar -I 'zstd -d' -xf data.tar.zst
67
+ ```
68
+
69
+ or, verbosely decompress
70
+
71
+ ```bash
72
+ zstd -d -c data.tar.zst | tar -xvf -
73
+ ```
direct_download_data.png ADDED

Git LFS Details

  • SHA256: 6da7bc17637d4cd70a2ae014c74cf9d83bec67e3b2fe31607ef46a6a546f7d4f
  • Pointer size: 130 Bytes
  • Size of remote file: 20.5 kB