loubnabnl HF staff commited on
Commit
22fef42
β€’
1 Parent(s): 82e9b2f

update app

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -80,6 +80,11 @@ elif selected_task == "Model architecture":
80
  text = f.read()
81
  st.markdown(f"## {model}:")
82
  st.markdown(text)
 
 
 
 
 
83
  elif selected_task == "Code generation":
84
  st.title("Code generation πŸ’»")
85
  st.sidebar.header("Examples")
 
80
  text = f.read()
81
  st.markdown(f"## {model}:")
82
  st.markdown(text)
83
+ elif selected_task == "Model evaluation":
84
+ st.title("Code models evaluation πŸ“Š")
85
+ with open("evaluation/intro.txt", "r") as f:
86
+ intro = f.read()
87
+ st.markdown(intro)
88
  elif selected_task == "Code generation":
89
  st.title("Code generation πŸ’»")
90
  st.sidebar.header("Examples")