Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -487,13 +487,13 @@ def calculate_dot_product_and_representations_independent(query_model_choice, do
|
|
| 487 |
full_output += "---\n\n"
|
| 488 |
|
| 489 |
# Query Representation
|
| 490 |
-
full_output += f"#### Query Representation: {query_model_name_display}
|
| 491 |
full_output += f"> {query_main_rep_str}\n" # Using blockquote for the sparse list
|
| 492 |
full_output += f"> {query_info_str}\n" # Using blockquote for info as well
|
| 493 |
full_output += "\n---\n\n" # Separator
|
| 494 |
|
| 495 |
# Document Representation
|
| 496 |
-
full_output += f"#### Document Representation: {doc_model_name_display}
|
| 497 |
full_output += f"> {doc_main_rep_str}\n" # Using blockquote
|
| 498 |
full_output += f"> {doc_info_str}" # Using blockquote
|
| 499 |
|
|
|
|
| 487 |
full_output += "---\n\n"
|
| 488 |
|
| 489 |
# Query Representation
|
| 490 |
+
full_output += f"#### Query Representation: {query_model_name_display}\n" # Smaller heading for sub-section
|
| 491 |
full_output += f"> {query_main_rep_str}\n" # Using blockquote for the sparse list
|
| 492 |
full_output += f"> {query_info_str}\n" # Using blockquote for info as well
|
| 493 |
full_output += "\n---\n\n" # Separator
|
| 494 |
|
| 495 |
# Document Representation
|
| 496 |
+
full_output += f"#### Document Representation: {doc_model_name_display}\n" # Smaller heading for sub-section
|
| 497 |
full_output += f"> {doc_main_rep_str}\n" # Using blockquote
|
| 498 |
full_output += f"> {doc_info_str}" # Using blockquote
|
| 499 |
|