AttributeError: Model of type <class 'gensim.models.keyedvectors.KeyedVectors'> can't be loaded by <class 'gensim.models.word2vec.Word2Vec'>
时间: 2024-03-16 17:45:46 浏览: 81
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误提示是因为你尝试用`gensim.models.word2vec.Word2Vec`来加载`gensim.models.keyedvectors.KeyedVectors`类型的模型,这是不兼容的。正确的做法是使用`gensim.models.keyedvectors.KeyedVectors.load`方法来加载模型,例如:
```python
from gensim.models import KeyedVectors
model = KeyedVectors.load('path/to/model')
```
请确保将`path/to/model`替换为你的模型文件的实际路径。
阅读全文