Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用的最好的 Python GloVe 词嵌入包是什么?我想要一个可以帮助修改共现矩阵权重的包。如果有人可以提供一个例子,我将不胜感激。
谢谢,穆罕默德
如果您使用的是 python3,那么 gensim 将是最佳选择。
例如:
from gensim.scripts.glove2word2vec import glove2word2vec
将获取手套模块。
扫罗