fix filename error

This commit is contained in:
gokul
2023-06-23 21:22:59 +05:30
parent 1cd2c20a7b
commit 8afc3ef4e1
2 changed files with 1 additions and 2 deletions

View File

@@ -20,7 +20,6 @@ def preprocess_sentence(sentence):
def compute_similarity(sent1, sent2):
tfidf_vectorizer = TfidfVectorizer()
print("semt1", sent1, sent2)
if sent1 is not None and sent2 is not None:
tfidf_matrix = tfidf_vectorizer.fit_transform([sent1, sent2])
return cosine_similarity(tfidf_matrix[0], tfidf_matrix[1])[0][0]