在使用YOLO v3网络中,需要生成特有的数据,在此过程中出现如下错误:
UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xad in position 129: illegal multibyte sequence
如图:
解决办法:
但不明白的是,如下语句没有使用上面的方法,加encoding='utf-8'
和errors='ignore'
内容也没有报错:
image_ids = open('data/ImageSets/%s.txt' % (image_set)).read().strip().split()
list_file = open('data/%s.txt' % (image_set), 'w')