vkashko commited on
Commit
2757070
1 Parent(s): bd9ef9d

fix: load script

Browse files
dogs-video-object-tracking-dataset.py CHANGED
@@ -165,6 +165,6 @@ class DogsVideoObjectTrackingDataset(datasets.GeneratorBasedBuilder):
165
  "id": image_id,
166
  "name": name,
167
  "image": file,
168
- "mask": f"{data}/masks/{file}",
169
  "shapes": shapes,
170
  }
 
165
  "id": image_id,
166
  "name": name,
167
  "image": file,
168
+ "mask": os.path.join(data, "masks", file),
169
  "shapes": shapes,
170
  }