Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
10K - 100K
ArXiv:
Tags:
question-generation
License:
Update qg_squad.py
Browse files- qg_squad.py +1 -1
qg_squad.py
CHANGED
@@ -7,7 +7,7 @@ _DESCRIPTION = """
|
|
7 |
of test and development set follows the ["Neural Question Generation"](https://arxiv.org/abs/1705.00106) work and is
|
8 |
compatible with the [leader board](https://paperswithcode.com/sota/question-generation-on-squad11).
|
9 |
"""
|
10 |
-
_URL = 'https://huggingface.co/datasets/
|
11 |
_URLS = {
|
12 |
'train': ['{}/train{:02d}.jsonl'.format(_URL, i) for i in range(23)],
|
13 |
'test': ['{}/test{:02d}.jsonl'.format(_URL, i) for i in range(4)],
|
|
|
7 |
of test and development set follows the ["Neural Question Generation"](https://arxiv.org/abs/1705.00106) work and is
|
8 |
compatible with the [leader board](https://paperswithcode.com/sota/question-generation-on-squad11).
|
9 |
"""
|
10 |
+
_URL = 'https://huggingface.co/datasets/lmqg/qg_squad/raw/main/data/processed'
|
11 |
_URLS = {
|
12 |
'train': ['{}/train{:02d}.jsonl'.format(_URL, i) for i in range(23)],
|
13 |
'test': ['{}/test{:02d}.jsonl'.format(_URL, i) for i in range(4)],
|