M17idd commited on
Commit
a0040d0
·
1 Parent(s): 88e4bdd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -540,7 +540,7 @@ def load_and_process_documents(path):
540
 
541
  doc_texts = load_and_process_documents(folder_path)
542
 
543
- with open('45/stopwords.txt', 'r', encoding='utf-8') as file:
544
  stop_words = set(file.read().splitlines())
545
 
546
  def remove_stop_words(text, stop_words):
 
540
 
541
  doc_texts = load_and_process_documents(folder_path)
542
 
543
+ with open('stopwords.txt', 'r', encoding='utf-8') as file:
544
  stop_words = set(file.read().splitlines())
545
 
546
  def remove_stop_words(text, stop_words):