lvwerra HF staff commited on
Commit
0e10e84
·
1 Parent(s): 56eec5a

fix device logic

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ def load_examples():
18
 
19
  st.set_page_config(page_icon=':parrot:', layout="wide")
20
 
21
- device = 1 if torch.cuda.is_available() else 0
22
  device_name = "GPU" if torch.cuda.is_available() else "CPU"
23
  model_ckpt = "lvwerra/codeparrot"
24
  pipe = load_pipeline(model_ckpt, device)
 
18
 
19
  st.set_page_config(page_icon=':parrot:', layout="wide")
20
 
21
+ device = 0 if torch.cuda.is_available() else -1
22
  device_name = "GPU" if torch.cuda.is_available() else "CPU"
23
  model_ckpt = "lvwerra/codeparrot"
24
  pipe = load_pipeline(model_ckpt, device)