efficientdet-pytorch icon indicating copy to clipboard operation
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

Open Eric3911 opened this issue 4 years ago • 2 comments

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')

Eric3911 avatar Dec 22 '20 08:12 Eric3911

greate

bubbliiiing avatar Dec 25 '20 04:12 bubbliiiing

多打了一个e我去

bubbliiiing avatar Dec 25 '20 04:12 bubbliiiing