ML-INTA commited on
Commit
283b5ce
·
1 Parent(s): 5382073

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -66,8 +66,8 @@ def ia_imagenes(modelo, prompt, prompt_negativo, uploaded_file, my_strength, my_
66
 
67
  pipe = StableDiffusionImg2ImgPipeline.from_pretrained(
68
  model_id,
69
- revision="fp16" if not torch.cuda.is_available() else "fp32",
70
- torch_dtype=torch.float16 if not torch.cuda.is_available() else torch.float32,
71
  requires_safety_checker = False
72
  ).to("cuda")
73
 
 
66
 
67
  pipe = StableDiffusionImg2ImgPipeline.from_pretrained(
68
  model_id,
69
+ revision="fp16" if torch.cuda.is_available() else "fp32",
70
+ torch_dtype=torch.float16 if torch.cuda.is_available() else torch.float32,
71
  requires_safety_checker = False
72
  ).to("cuda")
73