Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -401,9 +401,9 @@ def ask(symbol, weeks_before, withbasic):
|
|
401 |
print(model.device)
|
402 |
|
403 |
inputs = tokenizer(pt, return_tensors='pt')
|
404 |
-
inputs = {key: value.to(model.device) for key, value in inputs.items()}
|
405 |
#inputs = {key: value.to(model.device) for key, value in inputs.items()}
|
406 |
-
#inputs = {key: value.to(
|
|
|
407 |
print("Inputs loaded onto devices.")
|
408 |
|
409 |
res = model.generate(
|
|
|
401 |
print(model.device)
|
402 |
|
403 |
inputs = tokenizer(pt, return_tensors='pt')
|
|
|
404 |
#inputs = {key: value.to(model.device) for key, value in inputs.items()}
|
405 |
+
#inputs = {key: value.to(model.device) for key, value in inputs.items()}
|
406 |
+
inputs = {key: value.to('cuda:0') for key, value in inputs.items()}
|
407 |
print("Inputs loaded onto devices.")
|
408 |
|
409 |
res = model.generate(
|