Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- summarization
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: ML Articles Subset of Scientific Papers
|
| 8 |
+
size_categories:
|
| 9 |
+
- 10K<n<100K
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Dataset Card for 'ML Articles Subset of Scientific Papers' Dataset
|
| 13 |
+
## Dataset Summary
|
| 14 |
+
The dataset consists of 32,621 instances from the 'Scientific papers' dataset, a selection of scientific papers and summaries from ArXiv repository. This subset focuses on articles that are semantically, vocabulary-wise, structurally, and meaningfully closest to articles describing machine learning. This subset was created using sentence embeddings and K-means clustering.
|
| 15 |
+
|
| 16 |
+
## Supported Tasks and Leaderboards
|
| 17 |
+
The dataset supports tasks related to text summarization. Particularly, the dataset was created for fine-tuning transformer models for summarization. There are no established leaderboards at this moment.
|
| 18 |
+
|
| 19 |
+
## Languages
|
| 20 |
+
The text in the dataset is in English.
|
| 21 |
+
|
| 22 |
+
## Dataset Structure
|
| 23 |
+
|
| 24 |
+
### Data Instances
|
| 25 |
+
An instance in the dataset includes a scientific paper and its summary, both in English.
|
| 26 |
+
|
| 27 |
+
### Data Fields
|
| 28 |
+
|
| 29 |
+
article: The full text of the scientific paper.
|
| 30 |
+
abstract: The summary of the paper.
|
| 31 |
+
|
| 32 |
+
### Data Splits
|
| 33 |
+
The dataset is split into:
|
| 34 |
+
-training subset: 30280 articles
|
| 35 |
+
-validation subset: 1196 articles
|
| 36 |
+
-test subset: 1145 articles
|
| 37 |
+
|
| 38 |
+
## Dataset Creation
|
| 39 |
+
|
| 40 |
+
### Methods
|
| 41 |
+
The subset was created using sentence embeddings from a transformer model, SciBERT. The embeddings were clustered into 6 clusters using the K-means clustering algorithm. The cluster closest to articles strongly related to the machine learning area by cosine similarity was chosen to form this dataset.
|
| 42 |
+
|
| 43 |
+
### Source Data
|
| 44 |
+
The dataset is a subset of the 'Scientific papers' dataset, which includes scientific papers from the ArXiv repository.
|
| 45 |
+
|
| 46 |
+
### Social Impact
|
| 47 |
+
This dataset could help improve the quality of summarization models for machine learning research articles, which in turn can make such content more accessible.
|
| 48 |
+
|
| 49 |
+
### Discussion of Biases
|
| 50 |
+
As the dataset focuses on machine learning articles, it may not be representative of scientific papers in general or other specific domains.
|
| 51 |
+
|
| 52 |
+
### Other Known Limitations
|
| 53 |
+
As the dataset has been selected based on a specific methodology, it may not include all machine learning articles or may inadvertently include non-machine learning articles.
|
| 54 |
+
|
| 55 |
+
### Dataset Curators
|
| 56 |
+
The subset was created as part of a project aimed to build an effective summarization model for Machine Learning articles.
|