blackpill type shit jordan barett
My First Flux LoRA v1 for Blackpill
This is a fine-tuned LoRA model based on the Flux Schnell model. It is designed for generating text-to-image outputs with specific customizations.
Model Details
- Base Model:
black-forest-labs/FLUX.1-schnell
- LoRA Weights: Fine-tuned on custom data
- Training Steps: 2000
- Resolution: Multi-resolution ([512, 768, 1024])
Usage
To use this model, you can load it with the Hugging Face Diffusers library:
from diffusers import AutoPipelineForText2Image
import torch
# Load base model
pipeline = AutoPipelineForText2Image.from_pretrained(
"black-forest-labs/FLUX.1-schnell", torch_dtype=torch.bfloat16
).to("cuda")
# Load LoRA weights
pipeline.load_lora_weights("blackpillCO/my_first_flux_lora_v1_for_blackpill")
# Generate an image
image = pipeline("jordanbarett posing as a model").images[0]
image.save("generated_image.png")
- Downloads last month
- 2
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.