sheikh commited on
Commit
bc81b98
·
1 Parent(s): 5e1f599

Update SLR.py

Browse files
Files changed (1) hide show
  1. SLR.py +1 -1
SLR.py CHANGED
@@ -98,7 +98,7 @@ class SLR(datasets.GeneratorBasedBuilder):
98
 
99
  def _generate_examples(self, filepath):
100
  logger.info("⏳ Generating examples from = %s", filepath)
101
- ann_dir = os.path.join(filepath, "annotations//json_min")
102
  img_dir = os.path.join(filepath, "images")
103
  for guid, file in enumerate(sorted(os.listdir(ann_dir))):
104
  words=[]
 
98
 
99
  def _generate_examples(self, filepath):
100
  logger.info("⏳ Generating examples from = %s", filepath)
101
+ ann_dir = os.path.join(filepath, "annotations")
102
  img_dir = os.path.join(filepath, "images")
103
  for guid, file in enumerate(sorted(os.listdir(ann_dir))):
104
  words=[]