🚀 Bahartek_Fluxxx
This is a LoRA for the FLUX.1-dev text-to-image model, enabling image generation with specific trigger words and compatible with multiple platforms.
🚀 Quick Start
This section provides a quick overview of how to use the Bahartek_Fluxxx LoRA.
✨ Features
- This is a LoRA for the FLUX.1-dev text-to-image model. It can be used with diffusers or ComfyUI.
- It was trained on Replicate using AI toolkit: https://replicate.com/ostris/flux-dev-lora-trainer/train
💻 Usage Examples
Basic Usage
You should use TOK
to trigger the image generation.
Run this LoRA with an API using Replicate
import replicate
input = {
"prompt": "TOK",
"lora_weights": "https://huggingface.co/codermert/bahartek_fluxxx/resolve/main/lora.safetensors"
}
output = replicate.run(
"prithivMLmods/Canopus-LoRA-Flux-UltraRealism-2.0",
input=input
)
for index, item in enumerate(output):
with open(f"output_{index}.webp", "wb") as file:
file.write(item.read())
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('prithivMLmods/Canopus-LoRA-Flux-UltraRealism-2.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('codermert/bahartek_fluxxx', weight_name='lora.safetensors')
image = pipeline('TOK').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
🔧 Technical Details
- Steps: 2100
- Learning rate: 0.0004
- LoRA rank: 16
📄 License
This project is under the flux-1-dev-non-commercial-license.
🤝 Contribute your own examples
You can use the community tab to add images that show off what you’ve made with this LoRA.
Property |
Details |
Base Model |
black-forest-labs/FLUX.1-dev |
Pipeline Tag |
text-to-image |
Tags |
flux, diffusers, lora, replicate |
License Name |
flux-1-dev-non-commercial-license |
License Link |
https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |