Spaces:
Running
on
Zero
Running
on
Zero
yucornetto
commited on
Commit
•
506552e
1
Parent(s):
062a2e2
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ import argparse
|
|
11 |
import demo_util
|
12 |
import os
|
13 |
|
14 |
-
device = "cpu"
|
15 |
|
16 |
model2ckpt = {
|
17 |
"TiTok-L-32": ("tokenizer_titok_l32.bin", "generator_titok_l32.bin"),
|
|
|
11 |
import demo_util
|
12 |
import os
|
13 |
|
14 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
15 |
|
16 |
model2ckpt = {
|
17 |
"TiTok-L-32": ("tokenizer_titok_l32.bin", "generator_titok_l32.bin"),
|