Vadzim Kashko commited on
Commit
645167d
1 Parent(s): a0a6486

fix: csv sep

Browse files
anti-spoofing-real-waist-high-dataset.py CHANGED
@@ -58,7 +58,7 @@ class CarsVideoObjectTracking(datasets.GeneratorBasedBuilder):
58
  ]
59
 
60
  def _generate_examples(self, images, videos, annotations):
61
- annotations_df = pd.read_csv(annotations)
62
 
63
  for idx, ((image_path, image),
64
  (video_path, video)) in enumerate(zip(images, videos)):
 
58
  ]
59
 
60
  def _generate_examples(self, images, videos, annotations):
61
+ annotations_df = pd.read_csv(annotations, sep=';')
62
 
63
  for idx, ((image_path, image),
64
  (video_path, video)) in enumerate(zip(images, videos)):