Datasets:

Languages:
English
Multilinguality:
multilingual
Size Categories:
10M<n<100M
Language Creators:
crowdsourced
Annotations Creators:
no-annotation
Source Datasets:
original
ArXiv:
License:
albertvillanova HF staff commited on
Commit
16fafdb
1 Parent(s): 1d5a9d3

Update citation information

Browse files
Files changed (2) hide show
  1. README.md +13 -12
  2. wiki_dpr.py +11 -7
README.md CHANGED
@@ -150,9 +150,8 @@ dataset_info:
150
 
151
  ## Dataset Description
152
 
153
- - **Homepage:** [https://github.com/facebookresearch/DPR](https://github.com/facebookresearch/DPR)
154
- - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
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
- @misc{karpukhin2020dense,
417
- title={Dense Passage Retrieval for Open-Domain Question Answering},
418
- author={Vladimir Karpukhin and Barlas Oğuz and Sewon Min and Patrick Lewis and Ledell Wu and Sergey Edunov and Danqi Chen and Wen-tau Yih},
419
- year={2020},
420
- eprint={2004.04906},
421
- archivePrefix={arXiv},
422
- primaryClass={cs.CL}
 
 
 
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
- @misc{karpukhin2020dense,
13
- title={Dense Passage Retrieval for Open-Domain Question Answering},
14
- author={Vladimir Karpukhin and Barlas Oğuz and Sewon Min and Patrick Lewis and Ledell Wu and Sergey Edunov and Danqi Chen and Wen-tau Yih},
15
- year={2020},
16
- eprint={2004.04906},
17
- archivePrefix={arXiv},
18
- primaryClass={cs.CL}
 
 
 
 
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