ArtifactAI commited on
Commit
e46e235
1 Parent(s): 3033089

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -2
README.md CHANGED
@@ -32,6 +32,59 @@ dataset_info:
32
  download_size: 35993359504
33
  dataset_size: 89132091867
34
  ---
35
- # Dataset Card for "s2orc_full_parsed"
36
 
37
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  download_size: 35993359504
33
  dataset_size: 89132091867
34
  ---
35
+ # Dataset Card for "ArtifactAI/arxiv_s2orc_parsed"
36
 
37
+
38
+ ## Dataset Description
39
+
40
+ https://huggingface.co/datasets/ArtifactAI/arxiv_s2orc_parsed
41
+
42
+
43
+ ### Dataset Summary
44
+
45
+ ArtifactAI/arxiv_s2orc_parsed is a subset of the [AllenAI S2ORC dataset](https://github.com/allenai/s2orc), a general-purpose corpus for NLP and text mining research over scientific papers,
46
+ The dataset is filtered strictly for ArXiv papers, including the full text for each paper. Github links have been extracted from each paper to aid in the development of [ArtifactAI/arxiv_python_research_code](https://huggingface.co/datasets/ArtifactAI/arxiv_python_research_code)
47
+
48
+ ### How to use it
49
+ ```python
50
+ from datasets import load_dataset
51
+
52
+ ds = load_dataset("ArtifactAI/arxiv_s2orc_parsed", split="train")
53
+
54
+ # dataset streaming (will only download the data as needed)
55
+ ds = load_dataset("ArtifactAI/arxiv_s2orc_parsed", streaming=True, split="train")
56
+ ```
57
+
58
+ ## Dataset Structure
59
+ ### Data Instances
60
+ Each data instance corresponds to one file. The content of the file is in the `text` feature, and other features provide some metadata.
61
+ ### Data Fields
62
+ - `title` (sequence): list of titles.
63
+ - `author` (sequence): list of authors.
64
+ - `authoraffiliation` (sequence): list of institution affiliations for each author.
65
+ - `venue`: (integer): paper publication venue.
66
+ - `doi`: (float): paper doi.
67
+ - `pdfurls`: (integer): url link to the paper.
68
+ - `corpusid`: (int): corpus ID as defined by s2orc.
69
+ - `arxivid`: (int): arxiv paper id.
70
+ - `pdfsha`: (string): unique pdf hash.
71
+ - `text`: (string): full text of the arxiv paper.
72
+ - github_urls: (sequence): list of github urls referenced within the text
73
+
74
+ ### Data Splits
75
+
76
+ The dataset has no splits and all data is loaded as train split by default.
77
+
78
+ ## Additional Information
79
+
80
+ ### Dataset Curators
81
+ Matthew Kenney, Artifact AI, [email protected]
82
+
83
+ ### Citation Information
84
+ ```
85
+ @misc{arxiv_python_research_code,
86
+ title={arxiv_python_research_code},
87
+ author={Matthew Kenney},
88
+ year={2023}
89
+ }
90
+ ```