ameerazam08 commited on
Commit
f547ae8
·
verified ·
1 Parent(s): ed0008d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -199,7 +199,7 @@ def flux_pipe_call_that_returns_an_iterable_of_images(
199
 
200
  dtype = torch.bfloat16
201
  device = "cuda" if torch.cuda.is_available() else "cpu"
202
- base_model = "/media/vishnuanilkumar/New Volume/FLUX.1-dev"
203
 
204
  #TAEF1 is very tiny autoencoder which uses the same "latent API" as FLUX.1's VAE. FLUX.1 is useful for real-time previewing of the FLUX.1 generation process.#
205
  taef1 = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=dtype).to(device)
 
199
 
200
  dtype = torch.bfloat16
201
  device = "cuda" if torch.cuda.is_available() else "cpu"
202
+ base_model = "black-forest-labs/FLUX.1-dev"
203
 
204
  #TAEF1 is very tiny autoencoder which uses the same "latent API" as FLUX.1's VAE. FLUX.1 is useful for real-time previewing of the FLUX.1 generation process.#
205
  taef1 = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=dtype).to(device)