Spaces:
Runtime error
Runtime error
update titles
Browse files
app.py
CHANGED
@@ -51,13 +51,11 @@ elif selected_task == "Pretraining datasets":
|
|
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":
|
|
|
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":
|