When I run the code:
import pickle
ofname = open(r"ch05\dataset_small.pkl", 'rb')
(x, y) = pickle.load(ofname)
The error I get when running the code above is:
'ascii' codec can't decode byte 0xac in position 6: ordinal not in range(128)
How do I fix this error ?