geninhu commited on
Commit
c3b9254
1 Parent(s): 5c9af2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -59,7 +59,8 @@ def load_lottieurl(url: str):
59
  return r.json()
60
 
61
  def show_model_summary(expanded):
62
- with st.expander("Model gallery", expanded=expanded):
 
63
  col1, col2, col3, col4 = st.columns(4)
64
  with col1:
65
  st.markdown('Fauvism GAN [model](https://huggingface.co/huggan/fastgan-few-shot-fauvism-still-life)', unsafe_allow_html=True)
@@ -103,7 +104,7 @@ def main():
103
  icons=['stack', 'file-plus'],
104
  menu_icon="cast", default_index=0,
105
  styles={
106
- "container": {"padding": ".0rem", "font-size": "14px", "background-color": "#11ffee00"},
107
  "nav-link-selected": {"color": "#000000", "font-size": "16px"},
108
  }
109
  )
@@ -143,7 +144,7 @@ def main():
143
  col11, col12, col13 = st.columns([3,3.5,3.5])
144
  with col11:
145
  img_type = st.selectbox("Choose type of image to generate", index=0,
146
- options=["aurora", "anime", "painting", "fauvism", "shell", "universe", "grumpy cat"])
147
  # with col12:
148
  number_imgs = st.slider('How many images you want to generate ?', min_value=1, max_value=5)
149
  if number_imgs is None:
59
  return r.json()
60
 
61
  def show_model_summary(expanded):
62
+ st.subheader("Model gallery")
63
+ with st.expander('', expanded=expanded):
64
  col1, col2, col3, col4 = st.columns(4)
65
  with col1:
66
  st.markdown('Fauvism GAN [model](https://huggingface.co/huggan/fastgan-few-shot-fauvism-still-life)', unsafe_allow_html=True)
104
  icons=['stack', 'file-plus'],
105
  menu_icon="cast", default_index=0,
106
  styles={
107
+ "container": {"padding": ".0rem", "font-size": "14px"},
108
  "nav-link-selected": {"color": "#000000", "font-size": "16px"},
109
  }
110
  )
144
  col11, col12, col13 = st.columns([3,3.5,3.5])
145
  with col11:
146
  img_type = st.selectbox("Choose type of image to generate", index=0,
147
+ options=["aurora", "anime", "painting", "fauvism", "shell", "universe", "grumpy cat", "moon gate"])
148
  # with col12:
149
  number_imgs = st.slider('How many images you want to generate ?', min_value=1, max_value=5)
150
  if number_imgs is None: