Created
October 3, 2019 15:45
-
-
Save Venkatstatistics/5f8ba52eedfd3e0ac570d556c3febc49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import spacy | |
from spacy.lang.en import English | |
nlpsm = English() | |
sbd = nlpsm.create_pipe('sentencizer') | |
nlpsm.add_pipe(sbd) | |
import en_vectors_web_lg | |
nlplg = en_vectors_web_lg.load() | |
nlplg.add_pipe(sbd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment