missing import
Browse files- ChessBot-Dataset.py +1 -1
ChessBot-Dataset.py
CHANGED
@@ -18,7 +18,7 @@ class ChessPGNDataset(GeneratorBasedBuilder):
|
|
18 |
)
|
19 |
|
20 |
def _split_generators(self, dl_manager):
|
21 |
-
import glob
|
22 |
# data_dir is the root of your dataset repo
|
23 |
data_dir = self.config.data_dir
|
24 |
return [
|
|
|
18 |
)
|
19 |
|
20 |
def _split_generators(self, dl_manager):
|
21 |
+
import glob, os
|
22 |
# data_dir is the root of your dataset repo
|
23 |
data_dir = self.config.data_dir
|
24 |
return [
|