sumesh4C commited on
Commit
40c8a15
·
verified ·
1 Parent(s): 5f3aaed

Update tasks/text.py

Browse files
Files changed (1) hide show
  1. tasks/text.py +1 -1
tasks/text.py CHANGED
@@ -72,7 +72,7 @@ async def evaluate_text(request: TextEvaluationRequest):
72
  current_file_path = os.path.abspath(__file__)
73
  current_dir = os.path.dirname(current_file_path)
74
 
75
- with open(os.path.join(current_dir,"tf-idf_vectorizer2.pkl"), "rb") as tfidf_file:
76
  tfidf_vectorizer = dill.load(tfidf_file)
77
 
78
 
 
72
  current_file_path = os.path.abspath(__file__)
73
  current_dir = os.path.dirname(current_file_path)
74
 
75
+ with open(os.path.join(current_dir,"tfidf_vectorizer2.pkl"), "rb") as tfidf_file:
76
  tfidf_vectorizer = dill.load(tfidf_file)
77
 
78