Spaces:
Running
Running
Update src/services/processor.py
Browse files
src/services/processor.py
CHANGED
@@ -121,6 +121,7 @@ def find_best_list_combinations(list1: list[str], list2: list[str], matrix) -> l
|
|
121 |
for i in range(len(list1)):
|
122 |
valid_matches_for_l1_element = []
|
123 |
for j in range(len(list2)):
|
|
|
124 |
score = matrix[i, j]
|
125 |
|
126 |
if MIN_SIMILARITY <= score <= MAX_SIMILARITY:
|
|
|
121 |
for i in range(len(list1)):
|
122 |
valid_matches_for_l1_element = []
|
123 |
for j in range(len(list2)):
|
124 |
+
print((i,j))
|
125 |
score = matrix[i, j]
|
126 |
|
127 |
if MIN_SIMILARITY <= score <= MAX_SIMILARITY:
|