Update app.py
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ def run_radeval_simple(ref_text, hyp_text, selected_metrics):
|
|
49 |
|
50 |
# Prepare results for display
|
51 |
table_data = []
|
52 |
-
analysis_text = "## RadEval Results\n\n"
|
53 |
analysis_text += f"**Reference:** {ref_text[:100]}{'...' if len(ref_text) > 100 else ''}\n\n"
|
54 |
analysis_text += f"**Hypothesis:** {hyp_text[:100]}{'...' if len(hyp_text) > 100 else ''}\n\n"
|
55 |
analysis_text += "### Evaluation Scores:\n\n"
|
|
|
49 |
|
50 |
# Prepare results for display
|
51 |
table_data = []
|
52 |
+
analysis_text = "## 🚀 RadEval Results\n\n"
|
53 |
analysis_text += f"**Reference:** {ref_text[:100]}{'...' if len(ref_text) > 100 else ''}\n\n"
|
54 |
analysis_text += f"**Hypothesis:** {hyp_text[:100]}{'...' if len(hyp_text) > 100 else ''}\n\n"
|
55 |
analysis_text += "### Evaluation Scores:\n\n"
|