Downloads · 30 days
66
1% of all-time downloads
davisbro/flux-multi-angle
flux-multi-angle is a text-to-image model from davisbro. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as other.
Downloads · 30 days
66
1% of all-time downloads
All-time downloads
5.6K
Public
Repo size
516 MB
Likes
25
Public
Click a slice to open those files.
.safetensors344 MB · 100%
From the Hugging Face model README
Use "TOK" to trigger style, multiple angle portraits, with 90s and Y2K and throwback nostalgia.
You can also run the model on Replicate. https://replicate.com/davisbrown/flux-multi-angle
It would help if you used in the style of TOK for better style preservation. It is best to place the trigger words first and describe 90s or Y2K elements in your scene like clothing or expressive elements.
Or prefix your prompts with A TOK composite photo of a person posing at different angles for better results. Experiment with other prompting approaches to get wacky and experiment.
Trained on Replicate using: https://replicate.com/ostris/flux-dev-lora-trainer/train
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('davisbro/flux-multi-angle', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
Please adhere to the licensing terms as described here.