seawolf2357 commited on
Commit
fd512db
·
verified ·
1 Parent(s): ffc99a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
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(tf.__version__)
28
- print("GPU available:", len(tf.config.list_physical_devices('GPU')) > 0)
29
 
30
  def is_tensor(x):
31
- return tf.is_tensor(x)
32
 
33
- os.environ['KERAS_BACKEND'] = 'tensorflow'
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'