Datasets:
Add dataset card
Browse files
README.md
CHANGED
@@ -17,4 +17,94 @@ configs:
|
|
17 |
data_files:
|
18 |
- split: train
|
19 |
path: realnewslike-bbc-news/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
data_files:
|
18 |
- split: train
|
19 |
path: realnewslike-bbc-news/train-*
|
20 |
+
license: odc-by
|
21 |
+
language:
|
22 |
+
- en
|
23 |
+
pretty_name: BBC News from C4
|
24 |
+
size_categories:
|
25 |
+
- 10K<n<100K
|
26 |
---
|
27 |
+
|
28 |
+
# Dataset Card for BBC News from C4
|
29 |
+
|
30 |
+
This dataset provides a filtered subset of BBC News articles from the realnewslike subset of the C4 dataset, containing approximately 77k articles from BBC News domains.
|
31 |
+
|
32 |
+
## Dataset Details
|
33 |
+
|
34 |
+
### Dataset Description
|
35 |
+
|
36 |
+
- **Curated by:** Louis Maddox (@permutans on HuggingFace and X/Twitter)
|
37 |
+
- **License:** ODC-BY (inherited from C4)
|
38 |
+
- **Language:** English
|
39 |
+
|
40 |
+
### Dataset Sources
|
41 |
+
- **Repository:** https://huggingface.co/datasets/permutans/c4-bbc-news
|
42 |
+
- **Source Dataset:** allenai/c4 (realnewslike subset)
|
43 |
+
- **Paper:** https://arxiv.org/abs/1910.10683 (C4 paper)
|
44 |
+
|
45 |
+
## Uses
|
46 |
+
|
47 |
+
### Direct Use
|
48 |
+
Suitable for text analysis and NLP tasks focused on news content, particularly when working with BBC News articles. The dataset provides cleaned article text without metadata like bylines or publication dates.
|
49 |
+
|
50 |
+
### Out-of-Scope Use
|
51 |
+
This dataset should not be used as a comprehensive archive of BBC News content, as it represents only articles captured in C4's crawl around 2019. It should not be assumed to contain all articles from any given time period.
|
52 |
+
|
53 |
+
## Dataset Structure
|
54 |
+
|
55 |
+
### Data Instances
|
56 |
+
Example format:
|
57 |
+
```python
|
58 |
+
{
|
59 |
+
'url': 'news.bbc.co.uk/news/article-path',
|
60 |
+
'text': 'Article content...'
|
61 |
+
}
|
62 |
+
```
|
63 |
+
|
64 |
+
### Data Fields
|
65 |
+
- `url`: URL of the article with query parameters removed
|
66 |
+
- `text`: Full article text content
|
67 |
+
|
68 |
+
### Data Statistics
|
69 |
+
- Contains approximately 77k articles
|
70 |
+
- No validation split in current version
|
71 |
+
|
72 |
+
## Dataset Creation
|
73 |
+
|
74 |
+
### Curation Rationale
|
75 |
+
Created to provide an easily accessible dataset of BBC news articles while offering a focused view into the C4 dataset's coverage of major news sources. Enables analysis of C4's completeness and motivates investigation of alternative data acquisition methods.
|
76 |
+
|
77 |
+
### Source Data
|
78 |
+
#### Data Collection and Processing
|
79 |
+
- Filtered from C4's realnewslike subset
|
80 |
+
- Limited to domains: news.bbc.co.uk, www.bbc.co.uk/news, www.bbc.com/news
|
81 |
+
- URL cleaning: removed query parameters
|
82 |
+
- Regional news content excluded due to sparse coverage in source data
|
83 |
+
- No modifications to article text content
|
84 |
+
|
85 |
+
#### Personal and Sensitive Information
|
86 |
+
Article texts contain only the main content body, without bylines or metadata.
|
87 |
+
|
88 |
+
## Bias, Risks, and Limitations
|
89 |
+
|
90 |
+
- No validation split in current version
|
91 |
+
- Original publication dates not available (C4 timestamps were crawl dates)
|
92 |
+
- Section/index pages not yet filtered out from article pages
|
93 |
+
- Regional news content explicitly excluded due to sparse coverage
|
94 |
+
- Relationship between news.bbc.co.uk and bbc.co.uk/news domains needs investigation
|
95 |
+
- Coverage may be incomplete compared to full BBC News archive
|
96 |
+
|
97 |
+
### Recommendations
|
98 |
+
Users should be aware that this represents a subset of BBC News content which appears to be from around 2019 and earlier. For applications requiring comprehensive coverage or accurate publication dates, additional data sources should be considered.
|
99 |
+
|
100 |
+
## Future Directions
|
101 |
+
- Potential expansion using fineweb dataset for more recent content
|
102 |
+
- Addition of publication dates through targeted crawling
|
103 |
+
- Filtering to distinguish between section pages and article pages
|
104 |
+
- Creation of validation split
|
105 |
+
|
106 |
+
## Citation
|
107 |
+
Please cite the original C4 dataset when using this data. A reference to this one would be welcome but not necessary, I consider this a derivative work.
|
108 |
+
|
109 |
+
## Dataset Card Authors
|
110 |
+
Louis Maddox (@permutans)
|