Datasets:

ArXiv:
License:
OscarDo93589 commited on
Commit
2449fc0
·
verified ·
1 Parent(s): 5833932

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -4
README.md CHANGED
@@ -24,9 +24,17 @@ The data is stored under the *mobile_domain* directory. Our mobile grounding dat
24
  #### AMEX
25
  Android Multi-annotation EXpo (AMEX) is a comprehensive, large-scale dataset designed for generalist mobile GUI-control agents [1].
26
 
27
- Due to the single file size limitation of Hugging Face datasets, we stored the Amex images in *zip* format and split them into several sub-files. They are:
28
 
29
- - `path/to/file1`
30
- - `path/to/file2`
31
- - `path/to/file3`
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  #### AMEX
25
  Android Multi-annotation EXpo (AMEX) is a comprehensive, large-scale dataset designed for generalist mobile GUI-control agents [1].
26
 
 
27
 
 
 
 
28
 
29
+ Due to the single file size limitation of Hugging Face datasets, we stored the Amex images in *zip* format and split them into several sub-files.
30
+
31
+ - `amex_images_part_aa`
32
+ - `amex_images_part_ab`
33
+ - `amex_images_part_ac`
34
+
35
+ You need to first merge these split files back into the original file and then extract the contents.
36
+
37
+ ```
38
+ cat amex_images_part_* > amex_images.zip
39
+ 7z x amex_images.zip -aoa -o/path/to/extract/folder
40
+ ```