patchbanks commited on
Commit
5f163b3
·
verified ·
1 Parent(s): a275e2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ seed = random.randint(1, 100000)
30
  torch.manual_seed(seed)
31
  device = 'cuda' if torch.cuda.is_available() else 'cpu'
32
  dtype = 'bfloat16' if torch.cuda.is_available() and torch.cuda.is_bf16_supported() else 'float16'
33
- compile = True
34
  exec(open('configurator.py').read())
35
 
36
 
 
30
  torch.manual_seed(seed)
31
  device = 'cuda' if torch.cuda.is_available() else 'cpu'
32
  dtype = 'bfloat16' if torch.cuda.is_available() and torch.cuda.is_bf16_supported() else 'float16'
33
+ compile = False
34
  exec(open('configurator.py').read())
35
 
36