fixed an indentation in the file
#1
by
dandanw
- opened
- cc-stories.py +1 -1
cc-stories.py
CHANGED
@@ -79,7 +79,7 @@ class Bookcorpus(datasets.GeneratorBasedBuilder):
|
|
79 |
for _, ex in self._generate_examples(archive):
|
80 |
yield ex["text"]
|
81 |
|
82 |
-
|
83 |
downloaded_files = dl_manager.download_and_extract(_DATASET_URLS)
|
84 |
splits = [
|
85 |
datasets.SplitGenerator(
|
|
|
79 |
for _, ex in self._generate_examples(archive):
|
80 |
yield ex["text"]
|
81 |
|
82 |
+
def _split_generators(self, dl_manager):
|
83 |
downloaded_files = dl_manager.download_and_extract(_DATASET_URLS)
|
84 |
splits = [
|
85 |
datasets.SplitGenerator(
|