espejelomar commited on
Commit
df323a4
1 Parent(s): e149a99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -15,11 +15,13 @@ from utils import load_model,generate
15
 
16
 
17
  ## Configuración de nuestro demo
18
- st.title("ButterflyGAN")
19
- st.write("Light-GAN model trained on 1000 butterfly images taken from the Smithsonian Museum collection. \n \
20
- Based on [paper:](https://openreview.net/forum?id=1Fqg133qRaI) *Towards Faster and Stabilized GAN Training for High-fidelity Few-shot Image Synthesis*")
 
 
21
 
22
- st.sidebar.subheader("This butterfly does not exist! ")
23
  st.sidebar.image("assets/logo.png", width=200)
24
  st.sidebar.caption(f"[Model](https://huggingface.co/ceyda/butterfly_cropped_uniq1K_512) & [Dataset](https://huggingface.co/datasets/huggan/smithsonian_butterflies_subset) used")
25
  st.sidebar.caption(f"Made during the [huggan](https://github.com/huggingface/community-events) hackathon")
 
15
 
16
 
17
  ## Configuración de nuestro demo
18
+ st.title("Butterfly GAN (GAN de mariposas)")
19
+ st.write("Modelo Light-GAN entrenado con 1000 imágenes de mariposas tomadas de la colección del Museo Smithsonian.")
20
+ st.write("*Disclaimers:")
21
+ st.write("* Este demo es una versión simplificada del creado por [Ceyda Cinarel](https://github.com/cceyda) y [Jonathan Whitaker](https://datasciencecastnet.home.blog/) ([link](https://huggingface.co/spaces/huggan/butterfly-gan)) durante el hackathon [HugGan](https://github.com/huggingface/community-events).")
22
+ st.write("* Modelo basado en el [paper](https://openreview.net/forum?id=1Fqg133qRaI) *Towards Faster and Stabilized GAN Training for High-fidelity Few-shot Image Synthesis*.")
23
 
24
+ st.sidebar.subheader("¡Esta mariposa no existe! Ni en América Latina 🤯")
25
  st.sidebar.image("assets/logo.png", width=200)
26
  st.sidebar.caption(f"[Model](https://huggingface.co/ceyda/butterfly_cropped_uniq1K_512) & [Dataset](https://huggingface.co/datasets/huggan/smithsonian_butterflies_subset) used")
27
  st.sidebar.caption(f"Made during the [huggan](https://github.com/huggingface/community-events) hackathon")