I highly recommend you word your prompt like so.. "tshirt design, (your prompt here), in the style of 5h1rt"
This lora is intended to create vector like images with a solid color background for easily removing the background and printing it on a tshirt or any other items. It is still experimental and I am looking for ways to improve my dataset. It's best if you follow me so you get notifications if/when I release a second version of this..
I use
SwarmUI for 95% of my image generations and encourage you to try it out! Here's the link to the OFFICAL
GitHub repo and also checkout this install video from Kleebz Tech AI to get you started!
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
7pipeline.load_lora_weights('SouthbayJay/t-shirt-vector-style-flux', weight_name='vector_shirt_flux_v1.safetensors')
8image = pipeline('`5h1rt`').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers