Datasets:
ftvalentini
commited on
Commit
•
2974e7e
1
Parent(s):
99e8e54
Update README.md
Browse files
README.md
CHANGED
@@ -44,23 +44,22 @@ This is the Spanish Wikipedia corpus for MessIRve. A document corresponds to a p
|
|
44 |
|
45 |
### Data Instances
|
46 |
|
47 |
-
|
48 |
|
49 |
-
```
|
50 |
{
|
51 |
-
|
52 |
-
|
|
|
53 |
}
|
54 |
```
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
[More Information Needed]
|
59 |
|
60 |
|
61 |
### Data Fields
|
62 |
|
63 |
-
- `docid`: document
|
64 |
- `title`: article title
|
65 |
- `text`: document text (a passage)
|
66 |
|
|
|
44 |
|
45 |
### Data Instances
|
46 |
|
47 |
+
A typical instance in the dataset looks like:
|
48 |
|
49 |
+
```json
|
50 |
{
|
51 |
+
"docid": "17#9",
|
52 |
+
"title": "Demografía de Andorra",
|
53 |
+
"text": "El mayor núcleo de población del Principado es la capital, Andorra la Vieja, con 24.574 habitantes (2008), lo que representa el 29,6% de la población andorrana. Las siguientes parroquias por población son Las Escaldas-Engordany (16.474 hab.) y Encamp (14.030hab.)."
|
54 |
}
|
55 |
```
|
56 |
|
57 |
+
Following [MIRACL](https://huggingface.co/datasets/miracl/miracl-corpus), `docid` has the pattern X#Y, where Y indicates the sequentially numbered passage inside the Wikipedia article, and all passages with the same X are from the same article. The article name from which the paragraph is taken is in the `title` field.
|
|
|
|
|
58 |
|
59 |
|
60 |
### Data Fields
|
61 |
|
62 |
+
- `docid`: document ID in the corpus
|
63 |
- `title`: article title
|
64 |
- `text`: document text (a passage)
|
65 |
|