AMR-KELEG commited on
Commit
366115a
·
1 Parent(s): a8895f8

Enforce wide view by default

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -18,6 +18,7 @@ from huggingface_hub import HfApi
18
 
19
  api = HfApi()
20
 
 
21
  st.title("MLADI Leaderboard")
22
  st.write(
23
  "The Multi-label Arabic Dialect Identification (MLADI) leaderboard serves as a public interface for benchmarking ADI "
@@ -240,7 +241,9 @@ with tab1:
240
  with tab2:
241
  model_name = st.text_input("Enter a model's name on HF")
242
  model_revision = st.text_input(
243
- "Enter a model's revision on HF (commit id, or branch name)", placeholder="main"
 
 
244
  )
245
  inference_functions_names = [
246
  func_name for func_name, _ in getmembers(eval_utils, isfunction)
 
18
 
19
  api = HfApi()
20
 
21
+ st.set_page_config(layout="wide")
22
  st.title("MLADI Leaderboard")
23
  st.write(
24
  "The Multi-label Arabic Dialect Identification (MLADI) leaderboard serves as a public interface for benchmarking ADI "
 
241
  with tab2:
242
  model_name = st.text_input("Enter a model's name on HF")
243
  model_revision = st.text_input(
244
+ "Enter a model's revision on HF (commit id, or branch name)",
245
+ placeholder="main",
246
+ value="main",
247
  )
248
  inference_functions_names = [
249
  func_name for func_name, _ in getmembers(eval_utils, isfunction)