KingNish commited on
Commit
ad0113c
1 Parent(s): da74abb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -60,7 +60,7 @@ device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
60
  # Image Generator
61
  if torch.cuda.is_available():
62
  pipe = StableDiffusionXLPipeline.from_pretrained(
63
- "fluently/Fluently-XL-v4",
64
  torch_dtype=torch.float16,
65
  use_safetensors=True,
66
  )
@@ -85,7 +85,7 @@ def king(type = "Image Generation",
85
  image_cfg_scale: float = 1.7,
86
  width: int = 1024,
87
  height: int = 1024,
88
- guidance_scale: float = 6.2,
89
  use_resolution_binning: bool = True,
90
  progress=gr.Progress(track_tqdm=True),
91
  ):
 
60
  # Image Generator
61
  if torch.cuda.is_available():
62
  pipe = StableDiffusionXLPipeline.from_pretrained(
63
+ "fluently/Fluently-XL-Final",
64
  torch_dtype=torch.float16,
65
  use_safetensors=True,
66
  )
 
85
  image_cfg_scale: float = 1.7,
86
  width: int = 1024,
87
  height: int = 1024,
88
+ guidance_scale: float = 6,
89
  use_resolution_binning: bool = True,
90
  progress=gr.Progress(track_tqdm=True),
91
  ):