da03 commited on
Commit
e8831c0
·
1 Parent(s): 2994e72
Files changed (1) hide show
  1. main.py +3 -3
main.py CHANGED
@@ -22,13 +22,13 @@ torch.backends.cudnn.allow_tf32 = True
22
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
23
 
24
 
25
- DEBUG_MODE = False
26
- DEBUG_MODE_2 = True
27
  NUM_MAX_FRAMES = 32
28
 
29
  SCREEN_WIDTH = 512
30
  SCREEN_HEIGHT = 384
31
- NUM_SAMPLING_STEPS = 32
32
 
33
  with open('latent_stats.json', 'r') as f:
34
  latent_stats = json.load(f)
 
22
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
23
 
24
 
25
+ DEBUG_MODE = True
26
+ DEBUG_MODE_2 = False
27
  NUM_MAX_FRAMES = 32
28
 
29
  SCREEN_WIDTH = 512
30
  SCREEN_HEIGHT = 384
31
+ NUM_SAMPLING_STEPS = 8
32
 
33
  with open('latent_stats.json', 'r') as f:
34
  latent_stats = json.load(f)