ngomez07 commited on
Commit
c7e22f2
·
1 Parent(s): 26b4a28

Actualizar huggan

Browse files
Files changed (1) hide show
  1. utils.py +9 -6
utils.py CHANGED
@@ -1,15 +1,18 @@
1
- ## crear funciones par ala aplicaciones
2
  import numpy as np
3
- import torch
4
- from huggan.pytorch.lightweight_gan.lightweight_gan import LightweightGAN
 
5
 
 
6
  def carga_modelo(model_name="ceyda/butterfly_cropped_uniq1K_512", model_version=None):
7
  gan = LightweightGAN.from_pretrained(model_name, version=model_version)
8
  gan.eval()
9
  return gan
10
 
 
 
11
  def genera(gan, batch_size=1):
12
  with torch.no_grad():
13
- ims = gan.G(torch.randn(batch_size, gan.latent_dim)).clamp_(0.0, 1.0)*255
14
- ims = ims.permute(0,2,3,1).detach().cp().numpy().astype(np.uint8)
15
- return ims
 
 
1
  import numpy as np
2
+ import torch
3
+ from huggingface_hub import hf_hub_download
4
+ from lightweight_gan import LightweightGAN # Asegúrate de que este módulo existe o instálalo
5
 
6
+ ## Cargamos el modelo desde el Hub de Hugging Face
7
  def carga_modelo(model_name="ceyda/butterfly_cropped_uniq1K_512", model_version=None):
8
  gan = LightweightGAN.from_pretrained(model_name, version=model_version)
9
  gan.eval()
10
  return gan
11
 
12
+
13
+ ## Usamos el modelo GAN para generar imágenes
14
  def genera(gan, batch_size=1):
15
  with torch.no_grad():
16
+ ims = gan.G(torch.randn(batch_size, gan.latent_dim)).clamp_(0.0, 1.0) * 255
17
+ ims = ims.permute(0, 2, 3, 1).detach().cpu().numpy().astype(np.uint8)
18
+ return ims