Update README.md
Browse files
README.md
CHANGED
@@ -21,3 +21,19 @@ configs:
|
|
21 |
- split: train
|
22 |
path: data/train-*
|
23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
- split: train
|
22 |
path: data/train-*
|
23 |
---
|
24 |
+
|
25 |
+
This dataset is the English subset of the [Cohere/wikipedia-2023-11-embed-multilingual-v3](https://huggingface.co/datasets/Cohere/wikipedia-2023-11-embed-multilingual-v3)
|
26 |
+
dataset and contains the following columns:
|
27 |
+
|
28 |
+
- `_id`: unique identifier of the Wikipedia text chunk
|
29 |
+
- `title`: title of the Wikipedia article
|
30 |
+
- `url`: URL of the Wikipedia article
|
31 |
+
- `text`: text chunk of the Wikipedia article
|
32 |
+
|
33 |
+
You can load the dataset with:
|
34 |
+
|
35 |
+
```python
|
36 |
+
from datasets import load_dataset
|
37 |
+
|
38 |
+
dataset = load_dataset("krasserm/wikipedia-2023-11-en-text", split="train")
|
39 |
+
```
|