We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d6454 commit 1e50b93Copy full SHA for 1e50b93
qg_utils.py
@@ -30,7 +30,7 @@ def extract_ans(txts):
30
- nouns w/ dependencies that are proper nouns, roughly nouns modifying proper nouns
31
- if the head of a noun chunk if a verb, the entire noun chunk ?
32
"""
33
- nlp = get_spacy_nlp("en_core_web_lg")
+ nlp = spacy.load("en_core_web_lg")
34
all_ans = list()
35
for doc in nlp.pipe(txts, disable=[]):
36
ans = list()
0 commit comments