diff --git a/utils/dataset/dataset_parser.py b/utils/dataset/dataset_parser.py index af231a6..17fcf4b 100644 --- a/utils/dataset/dataset_parser.py +++ b/utils/dataset/dataset_parser.py @@ -36,9 +36,6 @@ def parse(label_file: str) -> ImageLabel: with open(label_file, "r") as f: tree = ET.parse(label_file) root = tree.getroot() - folder = root.find("folder").text - filename = root.find("filename").text - path = root.find("path").text size = root.find("size") width = int(size.find("width").text) height = int(size.find("height").text)