Jan Mühlnikel commited on
Commit
b858621
·
1 Parent(s): 8b7f97e

experiment

Browse files
Files changed (1) hide show
  1. functions/calc_matches.py +2 -2
functions/calc_matches.py CHANGED
@@ -21,7 +21,7 @@ def calc_matches(filtered_df, project_df, similarity_matrix, top_x):
21
  flat_matrix = dense_match_matrix.flatten()
22
 
23
  # Get the indices of the top 15 values in the flattened matrix
24
- top_15_indices = np.argsort(flat_matrix)[:top_x][::-1]
25
 
26
  # Convert flat indices back to 2D indices
27
  top_15_2d_indices = np.unravel_index(top_15_indices, dense_match_matrix.shape)
@@ -41,7 +41,7 @@ def calc_matches(filtered_df, project_df, similarity_matrix, top_x):
41
  top_15_matches.append((value, original_row_index, original_col_index))
42
 
43
  st.write(top_15_matches)
44
-
45
 
46
  p1_df = filtered_df.loc[org_cols].copy()
47
  p1_df['similarity'] = top_15_values
 
21
  flat_matrix = dense_match_matrix.flatten()
22
 
23
  # Get the indices of the top 15 values in the flattened matrix
24
+ top_15_indices = np.argsort(flat_matrix)[-top_x:]
25
 
26
  # Convert flat indices back to 2D indices
27
  top_15_2d_indices = np.unravel_index(top_15_indices, dense_match_matrix.shape)
 
41
  top_15_matches.append((value, original_row_index, original_col_index))
42
 
43
  st.write(top_15_matches)
44
+
45
 
46
  p1_df = filtered_df.loc[org_cols].copy()
47
  p1_df['similarity'] = top_15_values