Fox Models (image gen)
Collection
All the fox models for image generation. • 2 items • Updated • 1
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Fox 1.2 is 100x more powerful than Fox 1.0 - based on FLUX.1-schnell (12B params, Apache 2.0).
FLUX.1-schnell is a diffusers/HuggingFace model, not an Ollama model.
from diffusers import FluxPipeline
import torch
pipe = FluxPipeline.from_pretrained(
"black-forest-labs/FLUX.1-schnell",
torch_dtype=torch.bfloat16
)
pipe.to("cuda")
image = pipe(
prompt="Your prompt here",
num_inference_steps=4,
guidance_scale=0.0,
).images[0]
image.save("output.png")
First: Accept license at https://huggingface.co/black-forest-labs/FLUX.1-schnell
curl -X POST "http://127.0.0.1:7860/generate" \
-d "prompt=A majestic fox in a forest at sunset"
| Feature | Fox 1.0 | Fox 1.2 |
|---|---|---|
| Parameters | ~1B | 12B |
| Steps | 35+ | 1-4 |
| Quality | Good | State-of-the-art |
Apache 2.0 - Commercial use permitted.