from gensim.models import KeyedVectors
modelo = KeyedVectors.load("/content/complete.kv")
ModuleNotFoundError Traceback (most recent call last) in <cell line: 5>() 3 from gensim.models import KeyedVectors 4 ----> 5 modelo = KeyedVectors.load("/content/complete.kv") 6
1 frames /usr/local/lib/python3.10/dist-packages/gensim/utils.py in unpickle(fname) 1459 """ 1460 with open(fname, 'rb') as f: -> 1461 return _pickle.load(f, encoding='latin1') # needed because loading from S3 doesn't support readline() 1462 1463
ModuleNotFoundError: No module named 'gensim.models.deprecated'
NOTE: If your import is failing due to a missing package, you can manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the "Open Examples" button below.