1
我已使用gensim來訓練Word2Vec模型,並且想要查詢附近的術語。但不是剛開最接近於各個方向的話:在Word2Vec中沿特定方向移動向量空間
model = models.Word2Vec.load('MyModel') # load up my trained model
nearest = model.most_similar(['mushroom']) # nearby words all around
我想在矢量空間中的特定方向和移動的距離和檢索最近的字,主要有:
nearest = nearest_by_vector(word, direction_vector)
我的矢量數學是可怕的(即不存在),尤其是在我的模型中有這麼多維度。