Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: odc-by
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: odc-by
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- zh
|
| 8 |
+
tags:
|
| 9 |
+
- pretrain
|
| 10 |
+
- multi-modal
|
| 11 |
+
size_categories:
|
| 12 |
+
- 10M<n<100M
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# InfiMM-Math Contents
|
| 16 |
+
|
| 17 |
+
The dataset is structured as follows:
|
| 18 |
+
|
| 19 |
+
```
|
| 20 |
+
{
|
| 21 |
+
"URL": ..., # document url.
|
| 22 |
+
"text_list": ..., # extracted text from document, None means a image.
|
| 23 |
+
"image_list": ..., # extracted image urls from document, None means text.
|
| 24 |
+
"metadata": ..., # JSON containing information from the extraction process.
|
| 25 |
+
}
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Interleaved Text and Images
|
| 29 |
+
|
| 30 |
+
The `text_list` and `image_list` are designed to be parallel lists that together represent the sequential content of the document. The interleaving works as follows:
|
| 31 |
+
|
| 32 |
+
• If an element in `text_list` is a string (i.e., not None), the corresponding element in image_list is None, indicating that this position in the document contains text.
|
| 33 |
+
• If an element in `text_list` is None, the corresponding element in image_list contains an image URL, indicating that this position in the document contains an image.
|
| 34 |
+
|
| 35 |
+
This structure preserves the original order of text and images, allowing for accurate reconstruction of the document’s content flow.
|
| 36 |
+
|
| 37 |
+
# License
|
| 38 |
+
|
| 39 |
+
InfiMM-Math is made available under an ODC-By 1.0 license; users should also abide by the CommonCrawl ToU: [https://commoncrawl.org/terms-of-use/](https://commoncrawl.org/terms-of-use/). We do not alter the license of any of the underlying data.
|
| 40 |
+
|
| 41 |
+
# Citation Information
|
| 42 |
+
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
```
|