Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -118,7 +118,7 @@ def process_input_gradio(problem_description: str):
|
|
118 |
", ".join([f'{item["title"]}: {item["description"]}' for item in constraints_stemmed]),
|
119 |
"Global technologies loaded and ready.", # Acknowledge tech loading
|
120 |
str(result_similarities_display), # Convert dict to string for display
|
121 |
-
pd.DataFrame(matrix_display, index=constraints_stemmed, columns=global_tech[
|
122 |
best_combinations_display,
|
123 |
", ".join(map(str, best_technologies_id)),
|
124 |
best_technologies_display
|
|
|
118 |
", ".join([f'{item["title"]}: {item["description"]}' for item in constraints_stemmed]),
|
119 |
"Global technologies loaded and ready.", # Acknowledge tech loading
|
120 |
str(result_similarities_display), # Convert dict to string for display
|
121 |
+
pd.DataFrame(matrix_display, index=constraints_stemmed, columns=global_tech[0]), # Display matrix as DataFrame
|
122 |
best_combinations_display,
|
123 |
", ".join(map(str, best_technologies_id)),
|
124 |
best_technologies_display
|