https://github.com/affinelayer/pix2pix-tensorflow/tree/master/tools
在上述站点上编译“process.py”时出错。
python tools/process.py --input_dir data -- operation resize --outp
ut_dir data2/resize
data/0.jpg -> data2/resize/0.png
回溯(最近一次通话最后):
File "tools/process.py", line 235, in <module>
main()
File "tools/process.py", line 167, in main
src = load(src_path)
File "tools/process.py", line 113, in load
contents = open(path).read()
File"/home/user/anaconda3/envs/tensorflow_2/lib/python3.5/codecs.py", line 321, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
错误的原因是什么? Python 的版本是 3.5.2。
原文由 pie 发布,翻译遵循 CC BY-SA 4.0 许可协议
Python 尝试将字节数组(a
bytes
它假定为 utf-8 编码的字符串)转换为 unicode 字符串(str
)。这个过程当然是按照utf-8规则进行解码。当它尝试这样做时,它遇到了一个 utf-8 编码字符串中不允许的字节序列(即位置 0 处的这个 0xff)。由于您没有提供任何我们可以查看的代码,我们只能猜测其余部分。
从堆栈跟踪中,我们可以假设触发操作是从文件中读取(
contents = open(path).read()
)。我建议以这样的方式重新编码:That
b
in the mode specifier in theopen()
states that the file shall be treated as binary, socontents
will remain abytes
.这种方式不会发生解码尝试。