Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
wanng commited on
Commit
0147b39
·
verified ·
1 Parent(s): e3943d2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -8
README.md CHANGED
@@ -12,22 +12,39 @@ configs:
12
  tags:
13
  - multimodal
14
  size_categories:
15
- - 10M<n<100M
16
  ---
17
 
18
- # PIN-14M
19
 
20
- A mini version of "PIN: A Knowledge-Intensive Dataset for Paired and Interleaved Multimodal Documents"
21
 
22
  Paper: https://arxiv.org/abs/2406.13923
23
 
24
- This dataset contains 14M samples with PIN format.
 
 
25
 
26
  <img src="assets/intro.png">
27
 
 
 
 
28
 
29
  ## 0 Usage
30
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  Decompression
32
 
33
  ```bash
@@ -40,14 +57,12 @@ tar -xvf data.tar
40
  | Subsect | Documents (#) | Overall images (#) | Content images (#) | Documents (GB) | Overall images (GB) | Content images (GB) |
41
  |-----------------|-----------|----------------|----------------|---------------------|--------------------------|--------------------------|
42
  | pg19 | 2,612,285 | 2,608,029 | 0 | 12.3 | 1,418.1 | 0.0 |
43
- | OBELICS | 5,795,198 | 5,770,432 | 5,840,658 | 13.0 | 3,141.4 | 3,305.3 |
44
- | mmc4-core-ff | 5,351,628 | 5,277,983 | 9,014,579 | 33.7 | 3,232.0 | 5,605.0 |
45
  | chinese-markdown| 168,323 | 167,989 | 106,768 | 1.3 | 773.2 | 15.0 |
46
  | leetcode | 2,360 | 2,360 | 0 | 0.016 | 1.3 | 0.0 |
47
  | linux-cn | 9,564 | 9,564 | 38,960 | 0.082 | 11.9 | 1.8 |
48
  | DocLayNet | 68,757 | 69,375 | 90,259 | 0.18 | 25.9 | 1.6 |
49
- | PIN-PMC | 99,157 | 1,074,799 | 454,482 | 2.8 | 724.2 | 29.5 |
50
- | **Total** | 14,107,272| 14,980,531 | 15,545,706 | 63.4 | 9,328.0 | 8,958.3 |
51
 
52
  Storage space statistics may have some error, so these values are for reference only.
53
 
 
12
  tags:
13
  - multimodal
14
  size_categories:
15
+ - 100M<n<1000M
16
  ---
17
 
18
+ # PIN-100M
19
 
20
+ The full version of the dataset, related to the paper "PIN: A Knowledge-Intensive Dataset for Paired and Interleaved Multimodal Documents"
21
 
22
  Paper: https://arxiv.org/abs/2406.13923
23
 
24
+ This dataset contains 100M samples with PIN format.
25
+
26
+ **Please note that the required storage space exceeds 150TB!!**
27
 
28
  <img src="assets/intro.png">
29
 
30
+ 🚀 News
31
+
32
+ [ 2024.12.20 ] !NEW! 🔥The currently available version is not the complete version; this project is still ongoing! (It has been released early because we reached the private storage limit on Hugging Face.)
33
 
34
  ## 0 Usage
35
 
36
+ Download ALL files
37
+
38
+ ```bash
39
+ huggingface-cli download m-a-p/PIN-100M --repo-type=dataset --resume-download --local-dir "your_local_path"
40
+ ```
41
+
42
+ Download ONLY **Jsonl** files
43
+
44
+ ```bash
45
+ huggingface-cli download m-a-p/PIN-100M --repo-type=dataset --resume-download --include "*.jsonl" --local-dir "your_local_path"
46
+ ```
47
+
48
  Decompression
49
 
50
  ```bash
 
57
  | Subsect | Documents (#) | Overall images (#) | Content images (#) | Documents (GB) | Overall images (GB) | Content images (GB) |
58
  |-----------------|-----------|----------------|----------------|---------------------|--------------------------|--------------------------|
59
  | pg19 | 2,612,285 | 2,608,029 | 0 | 12.3 | 1,418.1 | 0.0 |
 
 
60
  | chinese-markdown| 168,323 | 167,989 | 106,768 | 1.3 | 773.2 | 15.0 |
61
  | leetcode | 2,360 | 2,360 | 0 | 0.016 | 1.3 | 0.0 |
62
  | linux-cn | 9,564 | 9,564 | 38,960 | 0.082 | 11.9 | 1.8 |
63
  | DocLayNet | 68,757 | 69,375 | 90,259 | 0.18 | 25.9 | 1.6 |
64
+
65
+ **TODO**
66
 
67
  Storage space statistics may have some error, so these values are for reference only.
68