From 881b27080bdd45f0950194326e58e635942d6f18 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 29 Sep 2024 10:05:14 +0300 Subject: [PATCH] nosegm3 --- nlp/stopwords_detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nlp/stopwords_detector.py b/nlp/stopwords_detector.py index e6c2600..8527c42 100644 --- a/nlp/stopwords_detector.py +++ b/nlp/stopwords_detector.py @@ -1,5 +1,5 @@ stopwords = [] -with open('stop_words.txt', 'r', encoding='utf-8') as file: +with open('nlp/stop_words.txt', 'r', encoding='utf-8') as file: text = file.readlines() # Convert stopwords to a set for faster lookup