vkashko commited on
Commit
b4fef5c
·
1 Parent(s): 3c1dbaa

fix: sep in csv

Browse files
Files changed (1) hide show
  1. anti-spoofing_Live.py +1 -1
anti-spoofing_Live.py CHANGED
@@ -56,7 +56,7 @@ class PortraitAnd26Photos(datasets.GeneratorBasedBuilder):
56
  ]
57
 
58
  def _generate_examples(self, data, annotations):
59
- annotations_df = pd.read_csv(annotations, sep=',')
60
  for idx, (image_path, image) in enumerate(data):
61
  if image_path.endswith('.jpg'):
62
  yield idx, {
 
56
  ]
57
 
58
  def _generate_examples(self, data, annotations):
59
+ annotations_df = pd.read_csv(annotations, sep=';')
60
  for idx, (image_path, image) in enumerate(data):
61
  if image_path.endswith('.jpg'):
62
  yield idx, {