Skip to content

Commit 0336893

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2fe680f commit 0336893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/cosine_similarity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def cosine_similarity_percentage(self, text1: str, text2: str) -> float:
170170
- float: The cosine similarity percentage between the two texts.
171171
"""
172172
try:
173-
self.model_download() # Comment if Installed
173+
self.model_download() # Comment if Installed
174174

175175
tokens1 = self.tokenize(text1)
176176
tokens2 = self.tokenize(text2)

0 commit comments

Comments
 (0)