Hello everyone. when I use the train_softmax.py , the program went wrong when execute this statement pickle.load(open(lfw.bin, 'rb'), the error message is : UnicodeDecodeError: 'ascii' codec can't decode byte 0xff in position 0: ordinal not in range(128). Who knows how to solve this problem? thanks.
pickle.load(open(path, 'rb'), encoding='bytes')
Most helpful comment
pickle.load(open(path, 'rb'), encoding='bytes')