fadeawaygod

Results 3 comments of fadeawaygod

Maybe you can try LabelEncoder instead of OntHotEncoder on the Y. It results the shape of y (83, 1) instead of (83, 5).

But it didn't work with FastText, below is my code: from gensim.models import FastText model_f = FastText.load("zh.bin") v = model_f.wv['你好']` It throws a exception: Exception has occurred: _pickle.UnpicklingError invalid load...

> But it didn't work with FastText, below is my code: > > from gensim.models import FastText > > model_f = FastText.load("zh.bin") > v = model_f.wv['你好']` > > It throws...