Spaces:
Runtime error
Runtime error
adding `transformers` dependency
Browse files- app.py +3 -0
- requirements.txt +1 -0
app.py
CHANGED
|
@@ -4,6 +4,9 @@ from diffusers import FluxInpaintPipeline
|
|
| 4 |
|
| 5 |
MARKDOWN = """
|
| 6 |
# FLUX.1 Inpainting 🔥
|
|
|
|
|
|
|
|
|
|
| 7 |
"""
|
| 8 |
|
| 9 |
DEVICE = torch.device("cuda")
|
|
|
|
| 4 |
|
| 5 |
MARKDOWN = """
|
| 6 |
# FLUX.1 Inpainting 🔥
|
| 7 |
+
|
| 8 |
+
Shoutout to the [Black Forest Labs](https://huggingface.co/black-forest-labs) team for
|
| 9 |
+
creating this amazing model!
|
| 10 |
"""
|
| 11 |
|
| 12 |
DEVICE = torch.device("cuda")
|
requirements.txt
CHANGED
|
@@ -1,3 +1,4 @@
|
|
| 1 |
gradio
|
| 2 |
spaces
|
|
|
|
| 3 |
git+https://github.com/Gothos/diffusers.git@flux-inpaint
|
|
|
|
| 1 |
gradio
|
| 2 |
spaces
|
| 3 |
+
transformers
|
| 4 |
git+https://github.com/Gothos/diffusers.git@flux-inpaint
|