Datasets:
Tasks:
Sentence Similarity
Modalities:
Text
Formats:
json
Languages:
English
Size:
10M - 100M
ArXiv:
DOI:
License:
Update README.md
Browse files
README.md
CHANGED
@@ -9,13 +9,6 @@ size_categories:
|
|
9 |
- 100M<n<1B
|
10 |
---
|
11 |
|
12 |
-
## Dataset Description
|
13 |
-
- **Homepage:** [Dell Research Harvard](https://dell-research-harvard.github.io/)
|
14 |
-
- <!--- **Repository:** [GitHub repository]()--->
|
15 |
-
- <!--- **Paper:** [NeurIPS Submission]()--->
|
16 |
-
- **Point of Contact:** Melissa Dell
|
17 |
-
|
18 |
-
|
19 |
![headline_image_with_title.jpg](https://s3.amazonaws.com/moonup/production/uploads/61654589b5ec555e8e9c203a/fJiAy43PFD3FBa1aMSzHz.jpeg)
|
20 |
|
21 |
## Dataset Summary
|
@@ -37,13 +30,34 @@ It contains headlines from all 50 states.
|
|
37 |
|
38 |
|
39 |
## Dataset Structure
|
|
|
|
|
|
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
|
45 |
## Usage
|
46 |
|
47 |
|
|
|
|
|
48 |
## Contacts
|
49 |
-
This dataset was created by Emily Silcock and Melissa Dell. For more information, see https://dell-research-harvard.github.io/
|
|
|
|
9 |
- 100M<n<1B
|
10 |
---
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
![headline_image_with_title.jpg](https://s3.amazonaws.com/moonup/production/uploads/61654589b5ec555e8e9c203a/fJiAy43PFD3FBa1aMSzHz.jpeg)
|
13 |
|
14 |
## Dataset Summary
|
|
|
30 |
|
31 |
|
32 |
## Dataset Structure
|
33 |
+
Each year in the dataset is divided into a distinct file (eg. 1952_headlines.pkl), giving a total of 70 files.
|
34 |
+
|
35 |
+
Each of these contains a list of dictionaries of the form:
|
36 |
|
37 |
+
```python
|
38 |
+
{
|
39 |
+
"headline": "...",
|
40 |
+
"date": "...",
|
41 |
+
"newspaper": "...",
|
42 |
+
"state": "...",
|
43 |
+
"cluster": "..."
|
44 |
+
}
|
45 |
+
```
|
46 |
|
47 |
+
** Headline: headline text.
|
48 |
+
** Date: the date of publication of the newspaper article, as a string in the form YYYY-MM-DD.
|
49 |
+
** Newspaper: name of the newspaper that published the headline.
|
50 |
+
** State: state of the newspaper that published the headline.
|
51 |
+
** Cluster: a number that is shared with all other headlines for the same article. This number is unique across all year files.
|
52 |
+
|
53 |
+
We chose to present the dataset in the form of clusters, rather than pairs to eliminate duplication of text data and minimise the storage size of the datasets. Below we give an example of how to convert the dataset into pairs.
|
54 |
|
55 |
|
56 |
## Usage
|
57 |
|
58 |
|
59 |
+
|
60 |
+
|
61 |
## Contacts
|
62 |
+
This dataset was created by Emily Silcock and Melissa Dell. For more information, see [Dell Research Harvard](https://dell-research-harvard.github.io/).
|
63 |
+
|