espejelomar commited on
Commit
52e93af
1 Parent(s): 63c4de8

subiendo utils y app

Browse files
Files changed (2) hide show
  1. app.py +43 -0
  2. utils.py +14 -0
app.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from turtle import width
2
+ import streamlit as st
3
+
4
+ from utils import carga_modelo, genera
5
+
6
+ ## Página principal
7
+ st.title("Generador de mariposas")
8
+ st.write("Este es un modelo Light GAN entrenado y utilizado con Platzi")
9
+
10
+ ## Barra lateral
11
+ st.sidebar.subheader("!Esta mariposa no existe, ¿puedes creerlo?")
12
+ st.sidebar.image("assets/logo.png", width=200)
13
+ st.sidebar.caption("Demo creado en vivo.")
14
+
15
+ ## Cargamos el modelo
16
+ repo_id = "ceyda/butterfly_cropped_uniq1K_512"
17
+ modelo_gan = carga_modelo(repo_id)
18
+
19
+ ## Generamos 4 mariposas
20
+ n_mariposas = 4
21
+
22
+ def corre():
23
+ with st.spinner("Generando, espero un poco..."):
24
+ ims = genera(modelo_gan, n_mariposas)
25
+ st.session_state["ims"] = ims
26
+
27
+ if "ims" not in st.session_state:
28
+ st.session_state["ims"] = None
29
+ corre()
30
+
31
+ ims = st.session_state["ims"]
32
+
33
+ corre_boton = st.button(
34
+ "Genera mariposas porfa",
35
+ on_click=corre,
36
+ help="Estamos en vuelo, abrocha tu cinturón."
37
+ )
38
+
39
+ if ims is not None:
40
+ cols = st.columns(n_mariposas)
41
+ for j, im in enumerate(ims):
42
+ i = j % n_mariposas
43
+ cols[i].image(im, use_column_width=True)
utils.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import torch
3
+ from huggan.pytorch.lightweight_gan.lightweight_gan import LightweightGAN
4
+
5
+ def carga_modelo(model_name="ceyda/butterfly_cropped_uniq1K_512", model_version=None):
6
+ gan = LightweightGAN.from_pretrained(model_name, version=model_version)
7
+ gan.eval()
8
+ return gan
9
+
10
+ def genera(gan, batch_size=1):
11
+ with torch.no_grad():
12
+ ims = gan.G(torch.randn(batch_size, gan.latent_dim)).clamp_(0.0, 1.0) * 255
13
+ ims = ims.permute(0,2,3,1).deatch().cpu().numpy().astype(np.uint8)
14
+ return ims