Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ import spaces
|
|
5 |
import torch
|
6 |
import time
|
7 |
from diffusers import DiffusionPipeline, AutoencoderTiny
|
8 |
-
from custom_pipeline import
|
9 |
|
10 |
# Constants
|
11 |
MAX_SEED = np.iinfo(np.int32).max
|
@@ -16,7 +16,7 @@ DEFAULT_INFERENCE_STEPS = 1
|
|
16 |
|
17 |
# Device and model setup
|
18 |
dtype = torch.float16
|
19 |
-
pipe =
|
20 |
"black-forest-labs/FLUX.1-schnell", torch_dtype=dtype
|
21 |
).to("cuda")
|
22 |
pipe.vae = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=torch.float16).to("cuda")
|
|
|
5 |
import torch
|
6 |
import time
|
7 |
from diffusers import DiffusionPipeline, AutoencoderTiny
|
8 |
+
from custom_pipeline import HighSpeedFluxPipeline
|
9 |
|
10 |
# Constants
|
11 |
MAX_SEED = np.iinfo(np.int32).max
|
|
|
16 |
|
17 |
# Device and model setup
|
18 |
dtype = torch.float16
|
19 |
+
pipe = HighSpeedFluxPipeline.from_pretrained(
|
20 |
"black-forest-labs/FLUX.1-schnell", torch_dtype=dtype
|
21 |
).to("cuda")
|
22 |
pipe.vae = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=torch.float16).to("cuda")
|