Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Spanish
ArXiv:
Libraries:
Datasets
Dask
ftvalentini commited on
Commit
2974e7e
1 Parent(s): 99e8e54

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -8
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
- <!-- Provide an JSON-formatted example and brief description of a typical instance in the dataset. If available, provide a link to further examples.
48
 
49
- ```
50
  {
51
- 'example_field': ...,
52
- ...
 
53
  }
54
  ```
55
 
56
- Provide any additional information that is not covered in the other sections about the data here. In particular describe any relationships between data points and if these relationships are made explicit. -->
57
-
58
- [More Information Needed]
59
 
60
 
61
  ### Data Fields
62
 
63
- - `docid`: document id in the corpus
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