|
import pandas as pd |
|
import numpy as np |
|
|
|
def find_similar(p_index, similarity_matrix, filtered_df, top_x): |
|
|
|
|
|
filtered_indices = filtered_df.index.tolist() |
|
|
|
index_position_mapping = {position: index for position, index in enumerate(filtered_indices)} |
|
|
|
filtered_column_sim_matrix = similarity_matrix[:, filtered_indices] |
|
|
|
|
|
project_row = filtered_column_sim_matrix[p_index] |
|
sorted_indices = np.argsort(project_row) |
|
top_10_indices_descending = sorted_indices[-10:][::-1] |
|
|
|
top_10_values_descending = project_row[top_10_indices_descending] |
|
|
|
result_df = filtered_df.iloc[top_10_indices_descending] |
|
result_df["similarity"] = top_10_values_descending |
|
|
|
return result_df |
|
|
|
|
|
|