Skip to content

Instantly share code, notes, and snippets.

View vinhkhuc's full-sized avatar

Vinh Khuc vinhkhuc

View GitHub Profile
# 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()