Spaces:
Paused
Paused
Commit
·
6aeb10f
1
Parent(s):
ef0338f
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from diffusers import DiffusionPipeline, StableDiffusionLatentUpscalePipeline
|
|
7 |
|
8 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
9 |
pipe = DiffusionPipeline.from_pretrained("stabilityai/sd-vae-ft-mse-original", torch_dtype=torch.float16, safety_checker=None)
|
10 |
-
upscaler = StableDiffusionLatentUpscalePipeline.from_pretrained("
|
11 |
upscaler = upscaler.to(device)
|
12 |
pipe = pipe.to(device)
|
13 |
|
|
|
7 |
|
8 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
9 |
pipe = DiffusionPipeline.from_pretrained("stabilityai/sd-vae-ft-mse-original", torch_dtype=torch.float16, safety_checker=None)
|
10 |
+
upscaler = StableDiffusionLatentUpscalePipeline.from_pretrained("SG161222/Realistic_Vision_V2.0", torch_dtype=torch.float16)
|
11 |
upscaler = upscaler.to(device)
|
12 |
pipe = pipe.to(device)
|
13 |
|