alexrods commited on
Commit
ea34704
1 Parent(s): 99273dd

Update mini_car_bikes_detection.py

Browse files
Files changed (1) hide show
  1. mini_car_bikes_detection.py +2 -2
mini_car_bikes_detection.py CHANGED
@@ -63,8 +63,8 @@ class MiniCarBikesDetection(datasets.GeneratorBasedBuilder):
63
 
64
  def _generate_examples(self, image_files):
65
  for image_file in os.listdir(image_files):
66
- yield [
67
  "image": image_file,
68
- ]
69
 
70
 
 
63
 
64
  def _generate_examples(self, image_files):
65
  for image_file in os.listdir(image_files):
66
+ yield {
67
  "image": image_file,
68
+ }
69
 
70