Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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")
|