正如我在标题中所说,我想加载预训练模型
例如,使用 gensim 是可能的,但使用 fasttext 说:
https://radimrehurek.com/gensim/models/wrappers/fasttext.html
"Note that due to limitations in the FastText API, you cannot continue training with a model loaded this way, though you can query for word similarity etc."
使用 Word2vec 可以继续训练您自己的模型,而不是我不知道 Glove 的 pretranind 结束。
你能指点我任何图书馆或其他东西来加载预先训练的模型并继续训练我自己的句子吗?
或者如果我可以将预训练模型加载到神经网络中,然后用我自己的向量继续训练?(也许使用 get_keras_embedding ?)