Pedro Cuenca commited on
Commit
b4bb5b9
unverified
2 Parent(s): 4381fec d9bb466

Merge pull request #173 from borisdayma/fix-run_reference

Browse files
Files changed (1) hide show
  1. app/streamlit/app.py +8 -8
app/streamlit/app.py CHANGED
@@ -78,15 +78,15 @@ if prompt != "":
78
  cols[(i % n_columns) * 2].image(img)
79
  container.markdown(f"**{prompt}**")
80
 
81
- st.sidebar.markdown(
82
- f"<small><center>{version}</center></small>", unsafe_allow_html=True
83
- )
84
 
85
- st.markdown(
86
- f"""
87
- These results have been obtained using model `{version}` from [an ongoing training run](https://wandb.ai/dalle-mini/dalle-mini/runs/mheh9e55).
88
- """
89
- )
90
 
91
  st.button("Again!", key="again_button")
92
 
 
78
  cols[(i % n_columns) * 2].image(img)
79
  container.markdown(f"**{prompt}**")
80
 
81
+ # st.sidebar.markdown(
82
+ # f"<small><center>{version}</center></small>", unsafe_allow_html=True
83
+ # )
84
 
85
+ # st.markdown(
86
+ # f"""
87
+ # These results have been obtained using model `{version}` from [an ongoing training run](https://wandb.ai/dalle-mini/dalle-mini/runs/mheh9e55).
88
+ # """
89
+ # )
90
 
91
  st.button("Again!", key="again_button")
92