标签: python fasttext
我正在使用fastText进行单词嵌入。为此,我在输入文档上训练了CBOW。
cbow = fastText.FastText.train_unsupervised('<data_path>', model = 'cbow', wordNgrams=5)
训练有素。问题是如何使用CBOW模型预测句子中的遗漏单词?例如,I am a ... person.。
I am a ... person.