nateraw commited on
Commit
5a73d89
·
1 Parent(s): 549847f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
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.title("Model Card Creator")
 
 
 
 
 
 
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
+ [![Github Badge](https://img.shields.io/github/stars/nateraw/modelcards?style=social)](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()