I am having challenges with my fastapi server running out of RAM after updating to use the spacy_en_core_web_lg from the small model.
When running fastapi 4 gunicorn workers are spawned and based on the memory usage I think each worker is loading in the model. Is there a way I can share the model across workers so I don't need to load it in each?