ppak10 commited on
Commit
ceae035
1 Parent(s): b5efdef

adds print statement.

Browse files
Files changed (1) hide show
  1. nist_lpbf_scan_tracks.py +1 -0
nist_lpbf_scan_tracks.py CHANGED
@@ -179,6 +179,7 @@ class AMDataset(datasets.GeneratorBasedBuilder):
179
  # TODO: This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
180
  # The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
181
 
 
182
  for index, file in enumerate(files):
183
  with open(file, "rb") as f:
184
  track = pickle.load(f)
 
179
  # TODO: This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
180
  # The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
181
 
182
+ print(files)
183
  for index, file in enumerate(files):
184
  with open(file, "rb") as f:
185
  track = pickle.load(f)