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