arnosimons commited on
Commit
2c5d625
1 Parent(s): 50a3d5f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - feature-extraction
4
+ language:
5
+ - en
6
+ tags:
7
+ - physics
8
+ - astrophysics
9
+ - high energy physics
10
+ - science
11
+ pretty_name: Astro-HEP Corpus
12
+ size_categories:
13
+ - 100K<n<1M
14
+ ---
15
+
16
+
17
+ # Dataset Card for Astro-HEP Corpus
18
+
19
+ **Astro-HEP-Corpus** consists of approximately 21.8 million paragraphs extracted from more than 600,000 scholarly articles related to astrophysics or high energy physics or both. All articles were published between 1986 and 2022 (inclusive) on the open-access archive <a target="_blank" rel="noopener noreferrer" href="http://arxiv.org/" >arXiv.org</a>.
20
+
21
+ The final dataset has the following columns:
22
+
23
+
24
+ |Column|Description|
25
+ |:----------:|:-:|
26
+ |*Text*|Full text of the paragraph|
27
+ |*Characters*|Number of unicode characters in the paragraph|
28
+ |*Subwords*|Number of BERT subwords in the paragraph|
29
+ |*arXiv ID*|Identifier of the parent article provided by arXiv|
30
+ |*Year*|Year of the first publication of the parent article|
31
+ |*Month*|Month of the first publication of the parent article|
32
+ |*Day*|Day of the first publication of the parent article|
33
+ |*Position*|Position in the sequence of paragraphs in the article|
34
+
35
+ The corpus served as training data for the <a target="_blank" rel="noopener noreferrer" href="https://huggingface.co/arnosimons/astro-hep-bert">Astro-HEP-BERT</a> model. For further insights into the corpus, the model, and the underlying research project (<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.3030/101044932" >Network Epistemology in Practice</a>) please refer to this paper [link coming soon].
36
+
37
+ <!-- <a target="_blank" rel="noopener noreferrer" href="">Astro-HEP-BERT paper</a>. -->
38
+
39
+ ## Construction
40
+
41
+ The articles were selected using the <a target="_blank" rel="noopener noreferrer" href="https://www.kaggle.com/datasets/Cornell-University/arxiv" >original arXiv metadata file</a> and the <a target="_blank" rel="noopener noreferrer" href="https://arxiv.org/category_taxonomy" >original arXiv taxonomy</a>, which comprises four primary categories for high energy physics (hep-ex, hep-lat, hep-ph, and hep-th) and one primary category for astrophysics (astro-ph). The latter includes six subcategories (astro-ph.CO, astro-ph.EP, astro-ph.GA, astro-ph.HE, astro-ph.IM, and astro-ph.SR). <a target="_blank" rel="noopener noreferrer" href="https://www.pandoc.org/" >Pandoc</a> was used to extract plain text from the original latex files sourced from arXiv.org. In addition, all in-text citations were replaced with the marker "[CIT]" and all multiline mathematical expressions were replaced with with "FORMULA". Mathematical expressions in the inline math mode (e.g. "$...$") remained unaltered. To parse the plain text versions of the articles into their respective paragraphs, no specialized parser was necessary because, owing to the requirements of the LaTeX markup language and the parsing already performed by Pandoc, all paragraphs could be parsed by straightforward newline splitting. Additional cleaning was performed to remove noisy paragraphs (see here [link coming soon]).