another typo fix
Browse files
nba_tracking_data_15_16.py
CHANGED
@@ -171,7 +171,7 @@ class NbaTracking(datasets.GeneratorBasedBuilder):
|
|
171 |
]
|
172 |
|
173 |
# method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
|
174 |
-
def _generate_examples(self,
|
175 |
# TODO: This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
|
176 |
# The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
|
177 |
for link in filepath:
|
|
|
171 |
]
|
172 |
|
173 |
# method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
|
174 |
+
def _generate_examples(self, filepaths, split):
|
175 |
# TODO: This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
|
176 |
# The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
|
177 |
for link in filepath:
|