When I am loading a file using pickle.load at that time I am facing this error.
with open("tfidf_vectorizer", mode='r+b') as handle:
tfidf_vectorizer = pickle.load(handle)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xdb in position 0: ordinal not in range(128)
tfidf_vectorizerhas no extension. Shouldn't it be something liketfidf_vectorizer.jsonor something like that @KlausD.