alexrods commited on
Commit
1e172be
1 Parent(s): 3447f32

Update mini_car_bikes_detection.py

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