Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
config_name: pair
|
4 |
features:
|
@@ -18,3 +30,24 @@ configs:
|
|
18 |
- split: train
|
19 |
path: pair/train-*
|
20 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
multilinguality:
|
5 |
+
- monolingual
|
6 |
+
size_categories:
|
7 |
+
- 100K<n<1M
|
8 |
+
task_categories:
|
9 |
+
- feature-extraction
|
10 |
+
- sentence-similarity
|
11 |
+
pretty_name: CC News
|
12 |
+
tags:
|
13 |
+
- sentence-transformers
|
14 |
dataset_info:
|
15 |
config_name: pair
|
16 |
features:
|
|
|
30 |
- split: train
|
31 |
path: pair/train-*
|
32 |
---
|
33 |
+
|
34 |
+
# Dataset Card for CC News
|
35 |
+
|
36 |
+
This dataset is a collection of title-article pairs collected from CC News. See [cc_news](https://huggingface.co/datasets/vblagoje/cc_news) for additional information.
|
37 |
+
This dataset can be used directly with Sentence Transformers to train embedding models.
|
38 |
+
|
39 |
+
## Dataset Subsets
|
40 |
+
|
41 |
+
### `pair` subset
|
42 |
+
|
43 |
+
* Columns: "title", "article"
|
44 |
+
* Column types: `str`, `str`
|
45 |
+
* Examples:
|
46 |
+
```python
|
47 |
+
{
|
48 |
+
'title': 'Tennessee joins states urging court to reinstate travel ban',
|
49 |
+
'article': 'NASHVILLE, Tenn. (AP) – Tennessee is joining more than a dozen other states in urging an appeals court to reinstate President Donald Trump’s revised travel ban.\nState Senate Majority Leader Mark Norris, a Collierville Republican considering a bid for governor next year, lauded Attorney General Herbert Slatery’s office for filing a brief with the 9th U.S. Circuit Court of Appeals in San Francisco.\nThe states argue the ban falls within the president’s authority to block foreigners from the U.S. They also reject the argument that it targets Muslims.\nNorris last year sponsored legislation to allow the General Assembly to hire its own attorneys to file a legal challenge seeking to halt the federal refugee resettlement program in Tennessee after Slatery and Gov. Bill Haslam declined to sue over the issue.',
|
50 |
+
}
|
51 |
+
```
|
52 |
+
* Collection strategy: Reading the CC News dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data).
|
53 |
+
* Deduplified: No
|