lara-martin commited on
Commit
d5df03d
1 Parent(s): 26ac6ab

Update FIREBALL.py

Browse files
Files changed (1) hide show
  1. FIREBALL.py +1 -2
FIREBALL.py CHANGED
@@ -57,7 +57,6 @@ _URLS = {
57
  "FIREBALL": "https://huggingface.co/datasets/lara-martin/FIREBALL/tree/main/filtered",
58
  }
59
 
60
- url = _URLS[self.config.name]
61
 
62
  class Fireball(datasets.GeneratorBasedBuilder):
63
  """TODO: Short description of my dataset."""
@@ -181,7 +180,7 @@ class Fireball(datasets.GeneratorBasedBuilder):
181
  def _split_generators(self, dl_manager):
182
  # This method is tasked with downloading/extracting the data and defining the splits depending on the configuration
183
 
184
-
185
  # dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLS
186
  # It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files.
187
  # By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
 
57
  "FIREBALL": "https://huggingface.co/datasets/lara-martin/FIREBALL/tree/main/filtered",
58
  }
59
 
 
60
 
61
  class Fireball(datasets.GeneratorBasedBuilder):
62
  """TODO: Short description of my dataset."""
 
180
  def _split_generators(self, dl_manager):
181
  # This method is tasked with downloading/extracting the data and defining the splits depending on the configuration
182
 
183
+ url = _URLS[self.config.name]
184
  # dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLS
185
  # It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files.
186
  # By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive