ML-INTA commited on
Commit
fec4498
1 Parent(s): c6ce7aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,8 +42,8 @@ def ia_imagenes(modelo, prompt, prompt_negativo, uploaded_file, my_strength, my_
42
 
43
  pipe = StableDiffusionPipeline.from_pretrained(
44
  model_id,
45
- revision="fp16" if torch.cuda.is_available() else "fp32",
46
- torch_dtype=torch.float16 if torch.cuda.is_available() else torch.float32,
47
  requires_safety_checker = False
48
  ).to("cpu")
49
 
 
42
 
43
  pipe = StableDiffusionPipeline.from_pretrained(
44
  model_id,
45
+ revision="fp16" if not torch.cuda.is_available() else "fp32",
46
+ torch_dtype=torch.float16 if not torch.cuda.is_available() else torch.float32,
47
  requires_safety_checker = False
48
  ).to("cpu")
49