ronald
commited on
Commit
·
733e8d6
1
Parent(s):
40ff4fe
add datacard
Browse files
README.md
CHANGED
@@ -37,8 +37,8 @@ This dataset was curated for the task of Science Journalism, a text-to-text task
|
|
37 |
However, this release also include additional information of the press release and of the scientific article, such as
|
38 |
press release article body, title, authors' names and affiliations.
|
39 |
|
|
|
40 |
|
41 |
-
- `task-category-tag`: The dataset can be used to train a model for [TASK NAME], which consists in [TASK DESCRIPTION]. Success on this task is typically measured by achieving a *high/low* [metric name](https://huggingface.co/metrics/metric_name). The ([model name](https://huggingface.co/model_name) or [model class](https://huggingface.co/transformers/model_doc/model_class.html)) model currently achieves the following score. *[IF A LEADERBOARD IS AVAILABLE]:* This task has an active leaderboard which can be found at [leaderboard url]() and ranks models based on [metric name](https://huggingface.co/metrics/metric_name) while also reporting [other metric name](https://huggingface.co/metrics/other_metric_name).
|
42 |
|
43 |
### Languages
|
44 |
|
@@ -49,21 +49,24 @@ English
|
|
49 |
|
50 |
### Data Fields
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
-
|
57 |
-
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
63 |
|
64 |
Paragraphs in the press release articles (`pr-article`) and sections of the scientific article (`sc-sections`)
|
65 |
are separated by `\n`. Data is not sentence or word tokenized.<br>
|
66 |
-
|
67 |
|
68 |
|
69 |
### Example Instance
|
@@ -76,7 +79,8 @@ are separated by `\n`. Data is not sentence or word tokenized.<br>
|
|
76 |
"pr-article": "In one of the most memorable speeches from William Shakespeare's play, Romeo and Juliet , Juliet ponders, \" What's in a name? That which...",
|
77 |
"pr-summary": ""Researchers at the University of Waterloo's Cheriton School of Computer Science in Canada found a software developer's perceived race and ethnicity,...",
|
78 |
"sc-title": On the Relationship Between the Developer's Perceptible Race and Ethnicity and the Evaluation of Contributions in OSS",
|
79 |
-
"sc-abstract": "Context: Open Source Software (OSS) projects are typically the result of collective efforts performed by developers with different backgrounds..."
|
|
|
80 |
"sc-sections": ["In any line of work, diversity regarding race, gender, personality...","To what extent is the submitter's perceptible race and ethnicity related to...",...],
|
81 |
"sc-section_names": ["INTRODUCTION", "RQ1:", "RQ2:", "RELATED WORK",...],
|
82 |
"sc-authors": ["Reza Nadri | Cheriton School of Computer Science, University of Waterloo", "Gema Rodriguez Perez | Cheriton School of ...",...]
|
@@ -84,19 +88,12 @@ are separated by `\n`. Data is not sentence or word tokenized.<br>
|
|
84 |
```
|
85 |
|
86 |
|
87 |
-
|
88 |
### Data Splits
|
89 |
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
Provide the sizes of each split. As appropriate, provide any descriptive statistics for the features, such as average length. For example:
|
95 |
|
96 |
-
| | train | validation | test |
|
97 |
-
|-------------------------|------:|-----------:|-----:|
|
98 |
-
| Input Sentences | | | |
|
99 |
-
| Average Sentence Length | | | |
|
100 |
|
101 |
## Dataset Creation
|
102 |
|
@@ -122,7 +119,6 @@ Finally, the scientific articles are retrieved in PDF format and processed using
|
|
122 |
Following collection strategies of previous scientific summarization datasets, section heading names are retrieved, and the article text is divided into sections. We also extract the title and all author names and affiliations.
|
123 |
|
124 |
|
125 |
-
|
126 |
#### Who are the source language producers?
|
127 |
|
128 |
All texts in this dataset (titles, summaries, and article bodies) were produced by humans.
|
@@ -161,6 +157,3 @@ Provide the [BibTex](http://www.bibtex.org/)-formatted reference for the dataset
|
|
161 |
year = {2525}
|
162 |
}
|
163 |
```
|
164 |
-
|
165 |
-
If the dataset has a [DOI](https://www.doi.org/), please provide it here.
|
166 |
-
|
|
|
37 |
However, this release also include additional information of the press release and of the scientific article, such as
|
38 |
press release article body, title, authors' names and affiliations.
|
39 |
|
40 |
+
The science juornalism leaderboard is found [here]().
|
41 |
|
|
|
42 |
|
43 |
### Languages
|
44 |
|
|
|
49 |
|
50 |
### Data Fields
|
51 |
|
52 |
+
```
|
53 |
+
{
|
54 |
+
"id": String, # unique ID
|
55 |
+
"pr-title": String, # Title as found in the ACMTECHNEWS website
|
56 |
+
"pr-article": String, # Press release article
|
57 |
+
"pr-summary": String, # Press release summary
|
58 |
+
"sc-title": String, # Title of scientific article
|
59 |
+
"sc-abstract": String, # Abstract of scientific article
|
60 |
+
"sc-article": String, # Concatenated abstract and sections of the scientific article
|
61 |
+
"sc-sections": List[String], # List of sections in the scientific article
|
62 |
+
"sc-section_names": List[String] # List of section names
|
63 |
+
"sc-authors": List[String] # list of authors' name and affiliations, in the format '<name> | <affil>'
|
64 |
+
}
|
65 |
+
```
|
66 |
|
67 |
Paragraphs in the press release articles (`pr-article`) and sections of the scientific article (`sc-sections`)
|
68 |
are separated by `\n`. Data is not sentence or word tokenized.<br>
|
69 |
+
Note that field `sc-article` includes the article's abstract as well as its sections.
|
70 |
|
71 |
|
72 |
### Example Instance
|
|
|
79 |
"pr-article": "In one of the most memorable speeches from William Shakespeare's play, Romeo and Juliet , Juliet ponders, \" What's in a name? That which...",
|
80 |
"pr-summary": ""Researchers at the University of Waterloo's Cheriton School of Computer Science in Canada found a software developer's perceived race and ethnicity,...",
|
81 |
"sc-title": On the Relationship Between the Developer's Perceptible Race and Ethnicity and the Evaluation of Contributions in OSS",
|
82 |
+
"sc-abstract": "Context: Open Source Software (OSS) projects are typically the result of collective efforts performed by developers with different backgrounds...",
|
83 |
+
"sc-articles": "Context: Open Source Software (OSS) projects are typically the result of .... In any line of work, diversity regarding race, gender, personality...",
|
84 |
"sc-sections": ["In any line of work, diversity regarding race, gender, personality...","To what extent is the submitter's perceptible race and ethnicity related to...",...],
|
85 |
"sc-section_names": ["INTRODUCTION", "RQ1:", "RQ2:", "RELATED WORK",...],
|
86 |
"sc-authors": ["Reza Nadri | Cheriton School of Computer Science, University of Waterloo", "Gema Rodriguez Perez | Cheriton School of ...",...]
|
|
|
88 |
```
|
89 |
|
90 |
|
|
|
91 |
### Data Splits
|
92 |
|
93 |
+
Number of instances in train/valid/test are 26,368/1432/1000.<br>
|
94 |
+
Note that the training set has only press release data (`pr-*`), however
|
95 |
+
splits validation and test do have all fields.
|
|
|
|
|
96 |
|
|
|
|
|
|
|
|
|
97 |
|
98 |
## Dataset Creation
|
99 |
|
|
|
119 |
Following collection strategies of previous scientific summarization datasets, section heading names are retrieved, and the article text is divided into sections. We also extract the title and all author names and affiliations.
|
120 |
|
121 |
|
|
|
122 |
#### Who are the source language producers?
|
123 |
|
124 |
All texts in this dataset (titles, summaries, and article bodies) were produced by humans.
|
|
|
157 |
year = {2525}
|
158 |
}
|
159 |
```
|
|
|
|
|
|