ktrndy commited on
Commit
033c787
·
verified ·
1 Parent(s): 7de50e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -10,11 +10,10 @@ from diffusers import DiffusionPipeline
10
  device = "cuda" if torch.cuda.is_available() else "cpu"
11
  model_id_default = "stable-diffusion-v1-5/stable-diffusion-v1-5" # Replace to the model you would like to use
12
 
13
- # if torch.cuda.is_available():
14
- # torch_dtype = torch.float16
15
- # else:
16
- # torch_dtype = torch.float32
17
- torch_dtype = torch.float32
18
 
19
  MAX_SEED = np.iinfo(np.int32).max
20
  MAX_IMAGE_SIZE = 1024
 
10
  device = "cuda" if torch.cuda.is_available() else "cpu"
11
  model_id_default = "stable-diffusion-v1-5/stable-diffusion-v1-5" # Replace to the model you would like to use
12
 
13
+ if torch.cuda.is_available():
14
+ torch_dtype = torch.float16
15
+ else:
16
+ torch_dtype = torch.float32
 
17
 
18
  MAX_SEED = np.iinfo(np.int32).max
19
  MAX_IMAGE_SIZE = 1024