Instructions to use black-forest-labs/FLUX.1-Fill-dev with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use black-forest-labs/FLUX.1-Fill-dev with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-Fill-dev", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Diffusion Single File
How to use black-forest-labs/FLUX.1-Fill-dev with Diffusion Single File:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
ah, cant use wget download
#38
by bingqimao - opened
ah, cant use wget download
I had the same problem until I clicked the "accept terms" button on the main page of the repository, then created a token in the settings and wrote
HF_TOKEN = userdata.get('HF_TOKEN')
!wget --header "Authorization: Bearer {HF_TOKEN}" "https://huggingface.co/black-forest-labs/FLUX.1-Fill-dev/resolve/main/ae.safetensors" -O "ae.safetensors"
!wget --header "Authorization: Bearer {HF_TOKEN}" "https://huggingface.co/black-forest-labs/FLUX.1-Fill-dev/resolve/main/flux1-fill-dev.safetensors" -O "flux1-fill-dev.safetensors"
wget --header="Authorization: Bearer YOUR TOKEN"
-O flux1-fill-dev.safetensors
https://huggingface.co/black-forest-labs/FLUX.1-Fill-dev/resolve/main/flux1-fill-dev.safetensors