I am working with word2vec. I have to load model (GoogleNews vector). But each time run project, It wastes a lot of time to load the model (about 3-4 min). Is there any way to load faster? Below is my code to load model:
print("Loading the model file...")
model = KeyedVectors.load_word2vec_format('~/Downloads/GoogleNews-vectors-negative300.bin.gz', binary=True)
print("Successfully loaded GoogleNews bin file!")