debug
Browse files
test.py
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
import os
|
|
|
|
|
2 |
import datasets
|
3 |
|
4 |
_CITATION = """\
|
@@ -53,6 +55,7 @@ class Test(datasets.GeneratorBasedBuilder):
|
|
53 |
|
54 |
def _split_generators(self, dl_manager):
|
55 |
data_dir = os.path.join(self.config.data_dir, self.config.name)
|
|
|
56 |
return [
|
57 |
datasets.SplitGenerator(
|
58 |
name=datasets.Split.TRAIN,
|
|
|
1 |
import os
|
2 |
+
from pdb import set_trace
|
3 |
+
|
4 |
import datasets
|
5 |
|
6 |
_CITATION = """\
|
|
|
55 |
|
56 |
def _split_generators(self, dl_manager):
|
57 |
data_dir = os.path.join(self.config.data_dir, self.config.name)
|
58 |
+
set_trace()
|
59 |
return [
|
60 |
datasets.SplitGenerator(
|
61 |
name=datasets.Split.TRAIN,
|