p1atdev commited on
Commit
008babf
·
verified ·
1 Parent(s): f41ec92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -59,7 +59,7 @@ TOKENIZERS = {
59
  }
60
 
61
  print("Compiling model...")
62
- for key, model in MODELS:
63
  MODELS[key] = torch.compile(model)
64
  print("Model compiled.")
65
 
 
59
  }
60
 
61
  print("Compiling model...")
62
+ for key, model in MODELS.items():
63
  MODELS[key] = torch.compile(model)
64
  print("Model compiled.")
65