SouthbayJay's picture
Upload folder using huggingface_hub
c1a65ba verified
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- style
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: 5h1rt
widget:
- text: 'tshirt design, a beautiful woman standing next to a chevy impala hot rod, Los Angeles skyline in the background, in the style of 5h1rt'
output:
url: >-
28434999.jpeg
- text: 'tshirt design, surfboards and palm trees on the beach, retro sunset in the background, in the style of 5h1rt'
output:
url: >-
28435386.jpeg
- text: 'tshirt design, skull, the style of 5h1rt'
output:
url: >-
28436410.jpeg
- text: 'tshirt design, chevy impala hot rod, city skyline in the background, in the style of 5h1rt'
output:
url: >-
28435130.jpeg
- text: 'tshirt design, skeleton, graveyardwith a full moon in the style of 5h1rt'
output:
url: >-
28435789.jpeg
- text: 'tshirt design, synth wave beach, retro sunset in the background, in the style of 5h1rt'
output:
url: >-
28435619.jpeg
- text: 'tshirt design, french bull dog in a Halloween costume, graveyard with a full moon in the style of 5h1rt'
output:
url: >-
28436096.jpeg
- text: 'tshirt design, cat, retro sunset in the background, in the style of 5h1rt'
output:
url: >-
28436326.jpeg
- text: 'tshirt design, day of the dead, the style of 5h1rt'
output:
url: >-
28436809.jpeg
- text: 'tshirt design, cat, retro sunset in the background, in the style of 5h1rt'
output:
url: >-
28436900.jpeg
- text: 'circular tshirt design, my little pony, a park in the background. the style of 5h1rt'
output:
url: >-
28437781.jpeg
- text: 'circular tshirt design, my little pony, a park in the background. the style of 5h1rt'
output:
url: >-
28437822.jpeg
- text: 'tshirt design, chevy impala hot rod, city skyline in the background, in the style of 5h1rt'
output:
url: >-
28438105.jpeg
- text: 'tshirt design, Ford rat rod with a flame paint job, paint splash background, in the style of 5h1rt'
output:
url: >-
28478541.jpeg
- text: 'tshirt design, harley davidson motorcycle, oval background, in the style of 5h1rt'
output:
url: >-
28478925.jpeg
- text: 'tshirt design, harley davidson motorcycle, red, white and blue color theme, oval background, in the style of 5h1rt'
output:
url: >-
28479179.jpeg
- text: 'circular tshirt design, illustration of a woman with white hair and backpack standing in front of a futuristic cyberpunk city, teal and orange color scheme, pop art style, comic drawing, intricate abstract details, 2d game art for gta cover 5h1rt'
output:
url: >-
29159838.jpeg
- text: ' '
output:
url: >-
29629314.jpeg
---
# T-Shirt Vector Style - FLUX
<Gallery />
## Model description
<p>Trigger word for this lora is <strong><em><span style="color:color(srgb 0.84 0.900784 0.900784)">5h1rt</span></em></strong><span style="color:color(srgb 0.84 0.900784 0.900784)"> </span><br /><span style="color:color(srgb 0.84 0.900784 0.900784)">it is best used like this at the end of the prompt, .."in the style of </span><strong><em><span style="color:color(srgb 0.84 0.900784 0.900784)">5h1rt"</span></em></strong></p><p>I highly recommend you word your prompt like so.. "tshirt design, (your prompt here), in the style of <strong><em><span style="color:color(srgb 0.84 0.900784 0.900784)">5h1rt</span></em></strong><span style="color:color(srgb 0.84 0.900784 0.900784)">"</span></p><p></p><p>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. <em>It is still experimental</em> 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..</p><p></p><p>I use <a target="_blank" rel="ugc" href="https://github.com/mcmonkeyprojects/SwarmUI">SwarmUI</a> for 95% of my image generations and encourage you to try it out! Here's the link to the OFFICAL<a target="_blank" rel="ugc" href="https://github.com/mcmonkeyprojects/SwarmUI"> GitHub repo </a>and also checkout this install video from Kleebz Tech AI to get you started!</p><div data-youtube-video><iframe width="640" height="480" allowfullscreen="true" autoplay="false" disablekbcontrols="false" enableiframeapi="false" endtime="0" ivloadpolicy="0" loop="false" modestbranding="false" origin playlist src="https://www.youtube.com/embed/vIBTxUZL0Jc?si=nF9xlcBEBG_mwlbD" start="0"></iframe></div><p></p><p></p><p></p><p></p>
## Trigger words
You should use `5h1rt` to trigger the image generation.
## Download model
Weights for this model are available in Safetensors format.
[Download](/SouthbayJay/t-shirt-vector-style-flux/tree/main) them in the Files & versions tab.
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
```py
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('SouthbayJay/t-shirt-vector-style-flux', weight_name='vector_shirt_flux_v1.safetensors')
image = pipeline('`5h1rt`').images[0]
```
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)