Update app.py
Browse files
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 = "/
|
| 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)
|