This file contains hidden or 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
# Source: https://course.spacy.io/ | |
# =========================== Chapter 1 =========================== # | |
# Import the English language class | |
import spacy | |
from spacy.lang.en import English | |
from spacy.matcher import Matcher | |
# Create the nlp object | |
nlp = English() |
OlderNewer