Spaces:
Sleeping
Sleeping
parsee-mizuhashi
commited on
Commit
•
e687a1c
1
Parent(s):
c23e8f4
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ if not Path("model.safetensors").exists():
|
|
21 |
MODEL_FILE = "model.safetensors"
|
22 |
unet, clip, vae = comfy.sd.load_checkpoint_guess_config(MODEL_FILE, output_vae=True, output_clip=True)[:3]# :3
|
23 |
BASE_NEG = "(low-quality worst-quality:1.4 (bad-anatomy (inaccurate-limb:1.2 bad-composition inaccurate-eyes extra-digit fewer-digits (extra-arms:1.2)"
|
24 |
-
DEVICE =
|
25 |
|
26 |
def common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent, denoise=1.0):
|
27 |
|
|
|
21 |
MODEL_FILE = "model.safetensors"
|
22 |
unet, clip, vae = comfy.sd.load_checkpoint_guess_config(MODEL_FILE, output_vae=True, output_clip=True)[:3]# :3
|
23 |
BASE_NEG = "(low-quality worst-quality:1.4 (bad-anatomy (inaccurate-limb:1.2 bad-composition inaccurate-eyes extra-digit fewer-digits (extra-arms:1.2)"
|
24 |
+
DEVICE = "cpu" if not torch.cuda.is_available() else "cuda"
|
25 |
|
26 |
def common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent, denoise=1.0):
|
27 |
|