loubnabnl HF staff commited on
Commit
cbf4c5e
·
1 Parent(s): 95d920e

update titles

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -51,11 +51,13 @@ elif selected_task == "Pretraining datasets":
51
  st.markdown(text)
52
 
53
  elif selected_task == "Model architecture":
 
54
  st.title("Model architecture 🔨")
55
  for model in selected_models:
56
  with open(f"architectures/{model.lower()}.txt", "r") as f:
57
  text = f.read()
58
  st.markdown(f"## {model}")
 
59
  st.markdown(text)
60
 
61
  elif selected_task == "Model evaluation":
 
51
  st.markdown(text)
52
 
53
  elif selected_task == "Model architecture":
54
+ import os
55
  st.title("Model architecture 🔨")
56
  for model in selected_models:
57
  with open(f"architectures/{model.lower()}.txt", "r") as f:
58
  text = f.read()
59
  st.markdown(f"## {model}")
60
+ st.markdown(f"## {os.getcwd()}")
61
  st.markdown(text)
62
 
63
  elif selected_task == "Model evaluation":