Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,13 @@ def get_cached_data():
|
|
22 |
languages_map, license_map, available_metrics = get_cached_data()
|
23 |
|
24 |
with st.sidebar:
|
25 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
st.markdown("This app lets you generate model cards for your 🤗 Hub model repo!")
|
27 |
view = st.selectbox("View", ["Markdown", "Raw Text", "How to Programmatically Generate"])
|
28 |
warning_placeholder = st.empty()
|
|
|
22 |
languages_map, license_map, available_metrics = get_cached_data()
|
23 |
|
24 |
with st.sidebar:
|
25 |
+
st.markdown('''
|
26 |
+
<div align="center">
|
27 |
+
<h1>Model Card Creator</h1>
|
28 |
+
|
29 |
+
[](https://github.com/nateraw/modelcards)
|
30 |
+
</div>
|
31 |
+
''', unsafe_allow_html=True)
|
32 |
st.markdown("This app lets you generate model cards for your 🤗 Hub model repo!")
|
33 |
view = st.selectbox("View", ["Markdown", "Raw Text", "How to Programmatically Generate"])
|
34 |
warning_placeholder = st.empty()
|