Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ def find_exact_match(df1, df2, column_name):
|
|
62 |
return matches
|
63 |
|
64 |
|
65 |
-
def find_similar_texts(df1, df2, column_name, threshold=0.
|
66 |
# Find rows with similar texts in the specified column, excluding exact matches
|
67 |
similar_texts = []
|
68 |
exact_matches = []
|
|
|
62 |
return matches
|
63 |
|
64 |
|
65 |
+
def find_similar_texts(df1, df2, column_name, threshold=0.3):
|
66 |
# Find rows with similar texts in the specified column, excluding exact matches
|
67 |
similar_texts = []
|
68 |
exact_matches = []
|