Jordan Legg commited on
Commit
2811e7f
Β·
1 Parent(s): 878ec45

enforce bf16

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -56,7 +56,8 @@ def infer(prompt, init_image=None, seed=42, randomize_seed=False, width=1024, he
56
  # Convert latent channels to 64 as expected by the transformer
57
  latent_channels = pipe.vae.config.latent_channels
58
  if latent_channels != 64:
59
- latents = torch.nn.Conv2d(latent_channels, 64, kernel_size=1).to(device)(latents)
 
60
 
61
  # Reshape latents to match the transformer's input expectations
62
  latents = latents.view(1, 64, height // 8, width // 8)
@@ -87,6 +88,7 @@ def infer(prompt, init_image=None, seed=42, randomize_seed=False, width=1024, he
87
  return image, seed
88
 
89
 
 
90
  # Define example prompts
91
  examples = [
92
  "a tiny astronaut hatching from an egg on the moon",
 
56
  # Convert latent channels to 64 as expected by the transformer
57
  latent_channels = pipe.vae.config.latent_channels
58
  if latent_channels != 64:
59
+ conv = torch.nn.Conv2d(latent_channels, 64, kernel_size=1).to(device, dtype=dtype)
60
+ latents = conv(latents)
61
 
62
  # Reshape latents to match the transformer's input expectations
63
  latents = latents.view(1, 64, height // 8, width // 8)
 
88
  return image, seed
89
 
90
 
91
+
92
  # Define example prompts
93
  examples = [
94
  "a tiny astronaut hatching from an egg on the moon",