From 8d9a7fa603e898eff857a35d06fa8690dec29ed4 Mon Sep 17 00:00:00 2001 From: rnsrk Date: Fri, 17 Mar 2023 21:25:44 +0100 Subject: [PATCH] take the large spacy model --- SentiTooter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SentiTooter.py b/SentiTooter.py index b5c1d6a..aabc498 100644 --- a/SentiTooter.py +++ b/SentiTooter.py @@ -154,7 +154,7 @@ def countWords(concatedToots: str, number: int) -> list: list List containing tuple of word and word frequency. """ - nlp = spacy.load('en_core_web_md') + nlp = spacy.load('en_core_web_lg') doc = nlp(concatedToots) # noun tokens that arent stop words or punctuations