rbler commited on
Commit
79fe4cb
·
verified ·
1 Parent(s): b9784cd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -75,9 +75,10 @@ def evaluate_and_update(pred_file, username,password):
75
  return f"✅ [email protected]: {score1:.4f}, [email protected]: {score2:.4f}, [email protected]: {score3:.4f}", leaderboard_df
76
 
77
 
78
-
 
79
  with gr.Blocks() as demo:
80
- gr.Markdown("# 🧊 MMScan HVG Challenge")
81
  with gr.Row():
82
  username = gr.Textbox(label="Username")
83
  password = gr.Textbox(label="Password", type="password")
 
75
  return f"✅ [email protected]: {score1:.4f}, [email protected]: {score2:.4f}, [email protected]: {score3:.4f}", leaderboard_df
76
 
77
 
78
+ with open("gradio_show.md", "r", encoding="utf-8") as f:
79
+ readme_content = f.read()
80
  with gr.Blocks() as demo:
81
+ gr.Markdown(readme_content)
82
  with gr.Row():
83
  username = gr.Textbox(label="Username")
84
  password = gr.Textbox(label="Password", type="password")