Update EMT.py
Browse files
EMT.py
CHANGED
@@ -120,7 +120,7 @@ class EMT(datasets.GeneratorBasedBuilder):
|
|
120 |
for ann_file in os.listdir(annotation_path):
|
121 |
video_name = os.path.splitext(ann_file)[0] # Get video folder name from the annotation file
|
122 |
ann_path = os.path.join(annotation_path, ann_file)
|
123 |
-
print("ann_path:,",ann_path)
|
124 |
|
125 |
with open(ann_path, "r", encoding="utf-8") as f:
|
126 |
for line in f:
|
|
|
120 |
for ann_file in os.listdir(annotation_path):
|
121 |
video_name = os.path.splitext(ann_file)[0] # Get video folder name from the annotation file
|
122 |
ann_path = os.path.join(annotation_path, ann_file)
|
123 |
+
print("ann_path:,",ann_path,"\nannotation_path: ",annotation_path)
|
124 |
|
125 |
with open(ann_path, "r", encoding="utf-8") as f:
|
126 |
for line in f:
|