I am trying to find a way to download the model en_core_web_lg ==2.3.1
for Spacy == 2.3.2
.
Currently using
python -m spacy download en_core_web_lg
import spacy
nlp = spacy.load ("en_core_web_lg")
Is it possible to download the model file or directory
directly and load the model
from that downloaded folder.