marcodsn commited on
Commit
93d36f0
·
verified ·
1 Parent(s): f0a93fb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -9
README.md CHANGED
@@ -40,17 +40,15 @@ configs:
40
  * **GitHub:** [https://github.com/marcodsn/academic-chains](https://github.com/marcodsn/academic-chains/tree/main/large_scale)
41
  * **Dataset:** [https://huggingface.co/datasets/marcodsn/arxiv-markdown](https://huggingface.co/datasets/marcodsn/arxiv-markdown) (this page)
42
 
43
- > **[24/04/2025]** Because of the high storage utilization we are seeing, we are currently thinking about moving the embedded images to a [Cloudflare R2](https://www.cloudflare.com/developer-platform/products/r2/) instance and to only reference the URLs in the markdowns, stay tuned for more updates on this!
44
-
45
- > **[24/04/2025] (but later)** We moved the images from being embedded in the markdowns as base64 data to externally referenced images uploaded to our R2 instance! Images are referenced in the dataset as \!\[Image](url); mirrors are welcome!
46
 
47
  This dataset contains open-access papers retrieved from [arXiv](https://arxiv.org) and converted to markdown format using [docling](https://github.com/docling-project/docling); specifically, we use the following docling pipeline:
48
  ```python
49
  pipeline_options = PdfPipelineOptions()
50
  pipeline_options.images_scale = IMAGE_RESOLUTION_SCALE # 2.0
51
- pipeline_options.generate_page_images = True
52
- pipeline_options.generate_picture_images = True # We want to have embedded images to allow the creation of a multimodal dataset in the future
53
- pipeline_options.do_code_enrichment = True
54
  pipeline_options.do_formula_enrichment = True # For converting formulas to LaTeX
55
  converter = DocumentConverter(
56
  format_options={
@@ -59,13 +57,13 @@ converter = DocumentConverter(
59
  )
60
  ```
61
 
62
- Currently the dataset constains the very first entries extracted from `August 2024`; we are currently dedicating an RTX 3090 full-time for the extraction of this data and will continue to upload new entries as they get processed.
63
 
64
- You can check the code we are using for the entries generation at [this link](https://github.com/marcodsn/academic-chains/tree/main/large_scale) (optimizations and general suggestions are very welcome!); note that the repo is heavily under contruction and will change a lot in the coming days and weeks before finally stabilizing (check the `feature/reorganize-repository` branch to monitor our updates real-time on this matter).
65
 
66
  ## Dataset Scope
67
 
68
- This dataset is being built as the first step to expanding the [academic-chains](https://huggingface.co/datasets/marcodsn/academic-chains) dataset, but other usage of this dataset by anyone from the community is welcome! You can check our license below in this same file.
69
 
70
  ## Limitations and Biases
71
 
 
40
  * **GitHub:** [https://github.com/marcodsn/academic-chains](https://github.com/marcodsn/academic-chains/tree/main/large_scale)
41
  * **Dataset:** [https://huggingface.co/datasets/marcodsn/arxiv-markdown](https://huggingface.co/datasets/marcodsn/arxiv-markdown) (this page)
42
 
43
+ > **[25/04/2025] Update:** Images are now hosted on Cloudflare R2 and referenced in the markdowns as external URLs rather than embedded base64. This significantly reduces storage requirements while maintaining full image access. Images are referenced in the dataset as \!\[Image](url). Community mirrors are welcome!
 
 
44
 
45
  This dataset contains open-access papers retrieved from [arXiv](https://arxiv.org) and converted to markdown format using [docling](https://github.com/docling-project/docling); specifically, we use the following docling pipeline:
46
  ```python
47
  pipeline_options = PdfPipelineOptions()
48
  pipeline_options.images_scale = IMAGE_RESOLUTION_SCALE # 2.0
49
+ pipeline_options.generate_page_images = True # Necessary for the extraction of figures (as far as I understand)
50
+ pipeline_options.generate_picture_images = True # For the extraction of figures
51
+ pipeline_options.do_code_enrichment = True # For obtaining code blocks
52
  pipeline_options.do_formula_enrichment = True # For converting formulas to LaTeX
53
  converter = DocumentConverter(
54
  format_options={
 
57
  )
58
  ```
59
 
60
+ Currently the dataset constains the very first entries extracted from `August 2019` and `August 2024`; we are currently dedicating an RTX 3090 full-time for the extraction of this data and will continue to upload new entries as they get processed.
61
 
62
+ You can find the code we are using for the data generation on [GitHub](https://github.com/marcodsn/arxiv-markdown) (optimizations and general suggestions are very welcome!).
63
 
64
  ## Dataset Scope
65
 
66
+ This dataset is being built as the first step to expanding the [academic-chains](https://huggingface.co/datasets/marcodsn/academic-chains) dataset, but other creative uses of this dataset by the community are welcome and encouraged! You can check our license below in this same file.
67
 
68
  ## Limitations and Biases
69