Hi,
I am trying to use the word2vec model in production. I have a python script which uses gensim to load the google pre-trained model into the memory. The main issue I'm having is that this python script will be called multiple times and in parallel. Which means, the script will try to load the model everytime.
Is there a work around this problem?
Can I load the model just once and use some memory mapping to call it again in some other program?
Any help will be appreciated.
Thanks,
Manya