From a8ed80c038e3280dca592a20253e38fb35c66b52 Mon Sep 17 00:00:00 2001 From: 0x4f53 <71916237+0x4f53@users.noreply.github.com> Date: Thu, 23 Nov 2023 20:25:30 +0530 Subject: [PATCH] fixed a runner exception #2 --- text_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/text_utils.py b/text_utils.py index e9d4672..3a584e2 100644 --- a/text_utils.py +++ b/text_utils.py @@ -103,6 +103,7 @@ def regional_pii(text): nltk.download('maxent_ne_chunker') nltk.download('stopwords') nltk.download('words') + nltk.download('averaged_perceptron_tagger') stop_words = set(stopwords.words('english'))