Update README.md
Browse files
README.md
CHANGED
@@ -54,19 +54,19 @@ Additionally, **you may want to download the PDF files**, available as a *.zip*
|
|
54 |
|
55 |
*The work from which originated the creation of this dataset is currently under submission to a conference.*
|
56 |
|
57 |
-
## Details about dataset content and usage
|
58 |
|
59 |
### Dataset schema and splits
|
60 |
|
61 |
The dataset is composed of two splits : ``chunks.single`` and ``chunks.multi``:
|
62 |
-
-
|
63 |
-
-
|
64 |
|
65 |
Both splits have de same schema:
|
66 |
- **query** (*str*): the query
|
67 |
- **source_file** (*list[str]*): the list of files from which the relevant passages are.
|
68 |
- **target_pages** (*list[list[int]]*): for each source file, the list of pages from which the relevant passages are. NOTE: page numbers are 0-based ! (the first page of the PDF files is 0) !
|
69 |
-
- **target_passages** (*list[list[str]]): for each source file, the list of passages (copy-pasted from the PDF file) that answer the query.
|
70 |
|
71 |
Example:
|
72 |
|
@@ -77,7 +77,7 @@ Considering a sample of the dataset which would be:
|
|
77 |
"source_file": ["doc_A.pdf", "doc_B.pdf"],
|
78 |
"target_pages": [[1], [2, 3]],
|
79 |
"taget_passages": [["passage"], ["other passage", "other other passage"]]
|
80 |
-
|
81 |
```
|
82 |
That means that *``"dummy query ?"``* would be answered by *"passage"* which is on page ``1`` of ``doc_A.pdf``, by *"other passage"* which is on page ``2`` of ``doc_B.pdf`` and by *"other other passage"* which is on page ``3`` of ``doc_B.pdf``
|
83 |
|
|
|
54 |
|
55 |
*The work from which originated the creation of this dataset is currently under submission to a conference.*
|
56 |
|
57 |
+
## Details about dataset content and usage
|
58 |
|
59 |
### Dataset schema and splits
|
60 |
|
61 |
The dataset is composed of two splits : ``chunks.single`` and ``chunks.multi``:
|
62 |
+
- ***chunks.single***: each query can be answered with only one passage of the PDF corpus
|
63 |
+
- ***chunks.multi***: each query needs multiple passages, sometimes from different pages to be answers
|
64 |
|
65 |
Both splits have de same schema:
|
66 |
- **query** (*str*): the query
|
67 |
- **source_file** (*list[str]*): the list of files from which the relevant passages are.
|
68 |
- **target_pages** (*list[list[int]]*): for each source file, the list of pages from which the relevant passages are. NOTE: page numbers are 0-based ! (the first page of the PDF files is 0) !
|
69 |
+
- **target_passages** (*list[list[str]]*): for each source file, the list of passages (copy-pasted from the PDF file) that answer the query.
|
70 |
|
71 |
Example:
|
72 |
|
|
|
77 |
"source_file": ["doc_A.pdf", "doc_B.pdf"],
|
78 |
"target_pages": [[1], [2, 3]],
|
79 |
"taget_passages": [["passage"], ["other passage", "other other passage"]]
|
80 |
+
}
|
81 |
```
|
82 |
That means that *``"dummy query ?"``* would be answered by *"passage"* which is on page ``1`` of ``doc_A.pdf``, by *"other passage"* which is on page ``2`` of ``doc_B.pdf`` and by *"other other passage"* which is on page ``3`` of ``doc_B.pdf``
|
83 |
|