So what I'm simply trying to do is save a Word2Vec model.
import nltk
from nltk.corpus import product_reviews_1 as review
import gensim
model = gensim.models.Word2Vec(review.sents())
model.save('review.embedding')
The code runs normally and there's this file review.embedding on my directory, but it has nothing but an error that says
the file is not UTF encoded and saving is disabled
Couldn't figure out what is wrong.