efficientdet-pytorch
efficientdet-pytorch copied to clipboard
self._root = parser._parse_whole(source) UnicodeDecodeError: 'gbk' codec can't decode byte 0xac in position 129: illegal multibyte sequence
If you encounter the above problems, please follow the following additional coding format to solve.
in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id), encoding='UTF_8')
trouble
in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id))
method
in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id), encoding='UTF_8')
greate
多打了一个e我去