Datasets:

Sub-tasks:
extractive-qa
Languages:
Russian
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
found
crowdsourced
Annotations Creators:
crowdsourced
Source Datasets:
original
ArXiv:
Tags:
License:
pefimov commited on
Commit
0a46891
1 Parent(s): 59515e9

Upload data files directly to the HF repository

Browse files

Since the download links from sberquad.py are currently unavailable, I have uploaded the files directly to the repository.

data/dev_v1.0.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9145c18e890e84fd070272fcaa607a688efd61debf36b89bc2b96654ac77d18
3
+ size 1927670
data/origin_test.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d24ee67e71ea95163342b72d8fb36914fa7d0b261b3552ed5824f355fe76963
3
+ size 2725921
data/train_v1.0.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a05221fe35eb1b4fcd17b8acca1d957e12d098783d8e8a2ebb2348f6c437b0a
3
+ size 5838123
sberquad.py CHANGED
@@ -1,6 +1,7 @@
1
  # coding=utf-8
2
  """SberQUAD: Sber Question Answering Dataset."""
3
 
 
4
  import json
5
 
6
  import datasets
@@ -33,7 +34,7 @@ from the corresponding reading passage, or the question might be unanswerable. \
33
  Russian original analogue presented in Sberbank Data Science Journey 2017.
34
  """
35
 
36
- _URLS = {"train": "https://sc.link/PNWl", "dev": "https://sc.link/W6oX", "test": "https://sc.link/VOn9"}
37
 
38
 
39
  class Sberquad(datasets.GeneratorBasedBuilder):
1
  # coding=utf-8
2
  """SberQUAD: Sber Question Answering Dataset."""
3
 
4
+ import os
5
  import json
6
 
7
  import datasets
34
  Russian original analogue presented in Sberbank Data Science Journey 2017.
35
  """
36
 
37
+ _URLS = {"train": os.path.join("data", "train_v1.0.json.gz"), "dev": os.path.join("data", "dev_v1.0.json.gz"), "test": os.path.join("data", "origin_test.json.gz")}
38
 
39
 
40
  class Sberquad(datasets.GeneratorBasedBuilder):