Alignment-Lab-AI commited on
Commit
f8f28dc
·
verified ·
1 Parent(s): 1c24143

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -23,10 +23,7 @@ Chat with Buzz-small!
23
  only 3b, this demo runs on the fp16 weights of the model in safetensors format (converting to cpp soon)
24
  """
25
 
26
- if torch.cuda.is_available():
27
- torch.device('cuda')
28
- else:
29
- torch.device('cpu')
30
 
31
  model_id = "H-D-T/Buzz-3b-small-v0.6.3"
32
  chatbot = pipeline(model=model_id, device=device, task="conversational")
 
23
  only 3b, this demo runs on the fp16 weights of the model in safetensors format (converting to cpp soon)
24
  """
25
 
26
+ device = 0 if torch.cuda.is_available() else -1
 
 
 
27
 
28
  model_id = "H-D-T/Buzz-3b-small-v0.6.3"
29
  chatbot = pipeline(model=model_id, device=device, task="conversational")