Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
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
|