Evelyn18 commited on
Commit
2e4e260
1 Parent(s): 4c71567

Update becas.py

Browse files
Files changed (1) hide show
  1. becas.py +5 -1
becas.py CHANGED
@@ -28,10 +28,13 @@ automatic translation of the Stanford Question Answering Dataset (SQuAD) v2 into
28
  """
29
 
30
  _URL = "https://raw.githubusercontent.com/EvelynQuevedo/becas/main/"
 
31
  _URLS_V1 = {
32
  "train": _URL + "datos/data.json"
 
33
  #"dev": _URL + "SQuAD-es-v1.1/dev-v1.1-es.json",
34
  }
 
35
  #_URLS_V2 = {
36
  # "train": _URL + "SQuAD-es-v2.0/train-v2.0-es.json",
37
  #"dev": _URL + "SQuAD-es-v2.0/dev-v2.0-es.json",
@@ -94,7 +97,8 @@ class SquadEs(datasets.GeneratorBasedBuilder):
94
  # builder.as_dataset.
95
  supervised_keys=None,
96
  # Homepage of the dataset for documentation
97
- homepage="https://github.com/Leo646/Posgrados/tree/master/",
 
98
  citation=_CITATION,
99
  )
100
 
 
28
  """
29
 
30
  _URL = "https://raw.githubusercontent.com/EvelynQuevedo/becas/main/"
31
+ print(_URL)
32
  _URLS_V1 = {
33
  "train": _URL + "datos/data.json"
34
+
35
  #"dev": _URL + "SQuAD-es-v1.1/dev-v1.1-es.json",
36
  }
37
+ print(_URLS_V1)
38
  #_URLS_V2 = {
39
  # "train": _URL + "SQuAD-es-v2.0/train-v2.0-es.json",
40
  #"dev": _URL + "SQuAD-es-v2.0/dev-v2.0-es.json",
 
97
  # builder.as_dataset.
98
  supervised_keys=None,
99
  # Homepage of the dataset for documentation
100
+ homepage="https://github.com/EvelynQuevedo/becas",
101
+
102
  citation=_CITATION,
103
  )
104