I am loaded a large word2vec
language model in Python. Each time I run the program, I need to load the model into memory.
I'm running the same program with different command line arguments from a shell script, e.g.
#!/bin/bash
python processor.py -ad
python processor.py -td
python processor.py -ds
Is there anything I can do to keep the language model in memory after the program finishes running, or will I just need to modify the python code itself to loop through the different iterations after the model is loaded?