When the pickle file is loaded by pickle.load(f,encoding=’utf-8’), an error generated as following:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x83 in position 0: invalid start byte.
When the pickle file is loaded by pickle.load(f), an error generated as following:
UnicodeDecodeError: 'ascii' codec can't decode byte 0x83 in position 0: ordinal not in range(128).
When the pickle file is loaded by pickle.load(f,encoding=’utf-8’), an error generated as following: UnicodeDecodeError: 'utf-8' codec can't decode byte 0x83 in position 0: invalid start byte.
When the pickle file is loaded by pickle.load(f), an error generated as following: UnicodeDecodeError: 'ascii' codec can't decode byte 0x83 in position 0: ordinal not in range(128).