๐ String Sandal
This project is a text - to - image model that can generate images of string sandals. It is based on the FLUX.1 - dev base model and uses LoRA technology.
๐ Quick Start
Trigger words
You should use SS
to trigger the image generation.
Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('openfree/string-sandal', weight_name='string-sandal.safetensors')
image = pipeline('a black String sandals photo ').images[0]
image.save("my_image.png")
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
โจ Features
- Text - to - Image: Generate images of string sandals based on text prompts.
- LoRA Technology: Utilize LoRA for efficient fine - tuning.
- Multiple Platform Compatibility: Can be used with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
๐ฆ Installation
The weights for this model are available in Safetensors format. You can download them in the Files & versions tab.
๐ป Usage Examples
Basic Usage
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('openfree/string-sandal', weight_name='string-sandal.safetensors')
image = pipeline('a black String sandals photo ').images[0]
image.save("my_image.png")
๐ Documentation
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
๐ License
This project is licensed under the flux - 1 - dev - non - commercial - license.
Property |
Details |
Model Type |
Text - to - Image |
Base Model |
black - forest - labs/FLUX.1 - dev |
License |
flux - 1 - dev - non - commercial - license |
License Link |
https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |