bluuebunny commited on
Commit
99363c1
·
verified ·
1 Parent(s): d4ff487

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Dataset Overview
2
+
3
+ This dataset contains bibliographic metadata from the public Crossref snapshot released in 2025. It provides core fields for scholarly documents, including DOI, title, abstract, authorship, publication month and year, and URLs. The entire public dump (\~196.94 GB) was filtered and extracted into a parquet format for efficient loading and querying.
4
+
5
+ * **Total size:** 196.94 GB (parquet files)
6
+ * **Number of records:** 34,308,730
7
+
8
+ Use this dataset for large-scale text mining, bibliometric analyses, metadata enrichment, and building citation-aware tools.
9
+
10
+ ## Dataset Features
11
+
12
+ Each record in the dataset contains the following fields:
13
+
14
+ | Field | Type | Description |
15
+ | ---------- | -------- | ----------------------------------------------------- |
16
+ | `doi` | `string` | Digital Object Identifier of the publication. |
17
+ | `title` | `string` | Title of the scholarly work. |
18
+ | `abstract` | `string` | Abstract text (when available). |
19
+ | `author` | `list` | List of author names or structured author metadata. |
20
+ | `month` | `int` | Publication month (1–12). |
21
+ | `year` | `int` | Publication year (e.g., 2024, 2025). |
22
+ | `url` | `string` | URL pointing to the publication page or DOI resolver. |
23
+
24
+ ## Dataset Structure
25
+
26
+ The dataset is provided in Apache Parquet format. Parquet allows for efficient columnar storage and supports schema evolution. Each parquet file chunk contains the complete schema as described above.
27
+
28
+ ```
29
+ root
30
+ |-- doi: string (nullable = true)
31
+ |-- title: string (nullable = true)
32
+ |-- abstract: string (nullable = true)
33
+ |-- author: array (nullable = true)
34
+ | |-- element: string (nullable = true)
35
+ |-- month: int (nullable = true)
36
+ |-- year: int (nullable = true)
37
+ |-- url: string (nullable = true)
38
+ ```
39
+
40
+ ## Dataset Splits
41
+
42
+ This dataset does not come with predefined splits. Users can split based on publication year, subject areas, or random sampling as per their experimentation needs.
43
+
44
+ ## Dataset Creation
45
+
46
+ ### Source
47
+
48
+ * **Original data:** Public crossref metadata snapshot July 2025 via Crossref blog: "2025 public data file now available" (approx. 196.94 GB). See [https://www.crossref.org/blog/2025-public-data-file-now-available/](https://www.crossref.org/blog/2025-public-data-file-now-available/).
49
+
50
+ * **Access method:** Downloaded the public JSON dump from Academic Torrents. [See](https://academictorrents.com/details/e0eda0104902d61c025e27e4846b66491d4c9f98)
51
+
52
+ ### Processing
53
+
54
+ 1. **Extraction:** Parsed the Crossref dump to extract relevant fields (DOI, title, abstract, authors, month, year, URL).
55
+ 2. **Transformation:** Normalized fields; authors consolidated into a list of names.
56
+ 3. **Serialization:** Saved the resulting table in Parquet format for columnar efficiency.
57
+ 4. **Storage:** Uploaded parquet files to Hugging Face Datasets with corresponding metadata.
58
+
59
+ Code for dataset processing and card generation is available at:
60
+
61
+ ```
62
+ https://github.com/mitanshu7/PaperMatch_crossref
63
+ ```
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+
70
+ dataset = load_dataset(
71
+ "bluuebunny/crossref_metadata_2025",
72
+ streaming=True,
73
+ split='train'
74
+ )
75
+
76
+ # Inspect a few records
77
+ print(dataset[0])
78
+
79
+ # Filter by year
80
+ subset_2025 = dataset.filter(lambda x: x["year"] == 2025)
81
+ print(f"Records published in 2025: {len(subset_2025)}")
82
+ ```
83
+
84
+ ## Citation
85
+
86
+ If you use this dataset in your research, please cite the Crossref public data file:
87
+
88
+ ```
89
+ @misc{crossref2025,
90
+ title = {{Crossref} Public Data File 2025},
91
+ author = {{Crossref}},
92
+ year = 2025,
93
+ howpublished = {\url{https://www.crossref.org/blog/2025-public-data-file-now-available/}},
94
+ }
95
+ ```
96
+
97
+
98
+ ## Contact
99
+
100
+ * Repository and processing code: [mitanshu7/PaperMatch\_crossref](https://github.com/mitanshu7/PaperMatch_crossref)
101
+ * Dataset author: Mitanshu Sukhwani