Datasets:
Update citation information (#9)
Browse files- Update citation information (16fafdbeeee9ece81606369b31573a0baa8f4972)
- README.md +13 -12
- wiki_dpr.py +11 -7
README.md
CHANGED
|
@@ -150,9 +150,8 @@ dataset_info:
|
|
| 150 |
|
| 151 |
## Dataset Description
|
| 152 |
|
| 153 |
-
- **
|
| 154 |
-
- **
|
| 155 |
-
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
| 156 |
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
| 157 |
- **Size of downloaded dataset files:** 425.79 GB
|
| 158 |
- **Size of the generated dataset:** 470.52 GB
|
|
@@ -412,16 +411,18 @@ The data fields are the same among all splits.
|
|
| 412 |
### Citation Information
|
| 413 |
|
| 414 |
```
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
|
|
|
|
|
|
|
|
|
| 423 |
}
|
| 424 |
-
|
| 425 |
```
|
| 426 |
|
| 427 |
|
|
|
|
| 150 |
|
| 151 |
## Dataset Description
|
| 152 |
|
| 153 |
+
- **Repository:** https://github.com/facebookresearch/DPR
|
| 154 |
+
- **Paper:** https://arxiv.org/abs/2004.04906
|
|
|
|
| 155 |
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
| 156 |
- **Size of downloaded dataset files:** 425.79 GB
|
| 157 |
- **Size of the generated dataset:** 470.52 GB
|
|
|
|
| 411 |
### Citation Information
|
| 412 |
|
| 413 |
```
|
| 414 |
+
@inproceedings{karpukhin-etal-2020-dense,
|
| 415 |
+
title = "Dense Passage Retrieval for Open-Domain Question Answering",
|
| 416 |
+
author = "Karpukhin, Vladimir and Oguz, Barlas and Min, Sewon and Lewis, Patrick and Wu, Ledell and Edunov, Sergey and Chen, Danqi and Yih, Wen-tau",
|
| 417 |
+
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
|
| 418 |
+
month = nov,
|
| 419 |
+
year = "2020",
|
| 420 |
+
address = "Online",
|
| 421 |
+
publisher = "Association for Computational Linguistics",
|
| 422 |
+
url = "https://www.aclweb.org/anthology/2020.emnlp-main.550",
|
| 423 |
+
doi = "10.18653/v1/2020.emnlp-main.550",
|
| 424 |
+
pages = "6769--6781",
|
| 425 |
}
|
|
|
|
| 426 |
```
|
| 427 |
|
| 428 |
|
wiki_dpr.py
CHANGED
|
@@ -9,13 +9,17 @@ logger = datasets.logging.get_logger(__name__)
|
|
| 9 |
|
| 10 |
|
| 11 |
_CITATION = """
|
| 12 |
-
@
|
| 13 |
-
title=
|
| 14 |
-
author=
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
}
|
| 20 |
"""
|
| 21 |
|
|
|
|
| 9 |
|
| 10 |
|
| 11 |
_CITATION = """
|
| 12 |
+
@inproceedings{karpukhin-etal-2020-dense,
|
| 13 |
+
title = "Dense Passage Retrieval for Open-Domain Question Answering",
|
| 14 |
+
author = "Karpukhin, Vladimir and Oguz, Barlas and Min, Sewon and Lewis, Patrick and Wu, Ledell and Edunov, Sergey and Chen, Danqi and Yih, Wen-tau",
|
| 15 |
+
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
|
| 16 |
+
month = nov,
|
| 17 |
+
year = "2020",
|
| 18 |
+
address = "Online",
|
| 19 |
+
publisher = "Association for Computational Linguistics",
|
| 20 |
+
url = "https://www.aclweb.org/anthology/2020.emnlp-main.550",
|
| 21 |
+
doi = "10.18653/v1/2020.emnlp-main.550",
|
| 22 |
+
pages = "6769--6781",
|
| 23 |
}
|
| 24 |
"""
|
| 25 |
|