DrishyamLabs

Results 4 comments of DrishyamLabs

Hi, thanks a lot for the wonderful library. Wanted to quickly check if any progress is made towards integration of tree based models direcly coming from scikit-learn?

Same error, any resolutions? Please guide us.

Hi @mrfast7, You can do that by using the following two commands: nlp.to_disk('my_model') nlp1 = spacy.load('my_model') All model related files get stored in this directory 'my_model'.

Installing spacy 2.0.18 resolved the issue for me. You can check your spacy version by using: import spacy print(spacy.__version__) # spaCy version print(spacy.__file__) # location of spaCy installation Follow this...