da03 commited on
Commit
5a8e3de
·
1 Parent(s): 8389537
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -22,7 +22,7 @@ DATA_NORMALIZATION = {
22
  'mean': -0.54,
23
  'std': 6.78,
24
  }
25
- LATENT_DIMS = (1, SCREEN_HEIGHT // 8, SCREEN_WIDTH // 8, 4)
26
 
27
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
28
  # Initialize the model at the start of your application
 
22
  'mean': -0.54,
23
  'std': 6.78,
24
  }
25
+ LATENT_DIMS = (4, SCREEN_HEIGHT // 8, SCREEN_WIDTH // 8)
26
 
27
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
28
  # Initialize the model at the start of your application