Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -22,15 +22,14 @@ from funcs import (
|
|
22 |
)
|
23 |
from transformers import pipeline
|
24 |
from diffusers import StableDiffusionXLPipeline
|
25 |
-
import tensorflow as tf
|
26 |
|
27 |
-
print(
|
28 |
-
print("
|
29 |
|
30 |
def is_tensor(x):
|
31 |
-
return
|
32 |
|
33 |
-
os.environ['KERAS_BACKEND'] = '
|
34 |
|
35 |
def download_model():
|
36 |
REPO_ID = 'Doubiiu/DynamiCrafter_1024'
|
|
|
22 |
)
|
23 |
from transformers import pipeline
|
24 |
from diffusers import StableDiffusionXLPipeline
|
|
|
25 |
|
26 |
+
print("PyTorch version:", torch.__version__)
|
27 |
+
print("CUDA available:", torch.cuda.is_available())
|
28 |
|
29 |
def is_tensor(x):
|
30 |
+
return torch.is_tensor(x)
|
31 |
|
32 |
+
os.environ['KERAS_BACKEND'] = 'pytorch'
|
33 |
|
34 |
def download_model():
|
35 |
REPO_ID = 'Doubiiu/DynamiCrafter_1024'
|