Spaces:
Running
on
Zero
Running
on
Zero
fix blog
Browse files
app.py
CHANGED
|
@@ -8,7 +8,7 @@ from diffusers import DiffusionPipeline
|
|
| 8 |
dtype = torch.bfloat16
|
| 9 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 10 |
|
| 11 |
-
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-schnell", torch_dtype=
|
| 12 |
|
| 13 |
MAX_SEED = np.iinfo(np.int32).max
|
| 14 |
MAX_IMAGE_SIZE = 2048
|
|
@@ -46,7 +46,7 @@ with gr.Blocks(css=css) as demo:
|
|
| 46 |
with gr.Column(elem_id="col-container"):
|
| 47 |
gr.Markdown(f"""# FLUX.1 [schnell]
|
| 48 |
12B param rectified flow transformer distilled from [FLUX.1 [pro]](https://blackforestlabs.ai/) for 4 step generation
|
| 49 |
-
[[blog](https://blackforestlabs.ai/
|
| 50 |
""")
|
| 51 |
|
| 52 |
with gr.Row():
|
|
|
|
| 8 |
dtype = torch.bfloat16
|
| 9 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 10 |
|
| 11 |
+
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-schnell", torch_dtype=dtype).to(device)
|
| 12 |
|
| 13 |
MAX_SEED = np.iinfo(np.int32).max
|
| 14 |
MAX_IMAGE_SIZE = 2048
|
|
|
|
| 46 |
with gr.Column(elem_id="col-container"):
|
| 47 |
gr.Markdown(f"""# FLUX.1 [schnell]
|
| 48 |
12B param rectified flow transformer distilled from [FLUX.1 [pro]](https://blackforestlabs.ai/) for 4 step generation
|
| 49 |
+
[[blog](https://blackforestlabs.ai/announcing-black-forest-labs/)] [[model](https://huggingface.co/black-forest-labs/FLUX.1-schnell)]
|
| 50 |
""")
|
| 51 |
|
| 52 |
with gr.Row():
|