Keltezaa commited on
Commit
715ed1a
·
verified ·
1 Parent(s): bd9e2a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,7 +38,7 @@ with open('loras.json', 'r') as f:
38
  # Initialize the base model
39
  dtype = torch.bfloat16
40
  device = "cuda" if torch.cuda.is_available() else "cpu"
41
- base_model = "city96/Flux.1-Heavy-17B"
42
 
43
  taef1 = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=dtype).to(device)
44
  good_vae = AutoencoderKL.from_pretrained(base_model, subfolder="vae", torch_dtype=dtype).to(device)
 
38
  # Initialize the base model
39
  dtype = torch.bfloat16
40
  device = "cuda" if torch.cuda.is_available() else "cpu"
41
+ base_model = "sayakpaul/FLUX.1-merged"
42
 
43
  taef1 = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=dtype).to(device)
44
  good_vae = AutoencoderKL.from_pretrained(base_model, subfolder="vae", torch_dtype=dtype).to(device)