aihpi commited on
Commit
b052b34
·
verified ·
1 Parent(s): 7aa3cf6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -23,10 +23,31 @@ instance_prompt: null
23
  license: apache-2.0
24
  ---
25
  # flux-fashion
 
 
26
 
27
  <Gallery />
28
 
 
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  ## Download model
32
 
 
23
  license: apache-2.0
24
  ---
25
  # flux-fashion
26
+ The **flux-fashion** LoRA model generates high-quality, realistic clothing images from text descriptions. It was trained on the [H&M Fashion Caption Dataset (12k)](https://huggingface.co/datasets/tomytjandra/h-and-m-fashion-caption-12k) using the [AI Toolkit](https://github.com/ostris/ai-toolkit?tab=readme-ov-file).
27
+ The LoRA is compatible with FLUX architectures, including [Shuttle 3.1](https://huggingface.co/shuttleai/shuttle-3.1-aesthetic).
28
 
29
  <Gallery />
30
 
31
+ ## Features
32
 
33
+ - **Dataset**: Fine-tuned on [H&M Fashion Caption Dataset (12k)](https://huggingface.co/datasets/tomytjandra/h-and-m-fashion-caption-12k)
34
+ - **Architecture**: Compatible with FLUX (e.g., Shuttle 3.1)
35
+ - **Model Type**: LoRA for text-to-image tasks.
36
+ - **Base Model**: [black-forest-labs/FLUX.1-schnell](https://huggingface.co/black-forest-labs/FLUX.1-schnell).
37
+ - **License**: [Apache-2.0](https://choosealicense.com/licenses/apache-2.0/).
38
+ ## Usage
39
+
40
+ Use this Model directly using Diffusers
41
+
42
+ ```python
43
+ from diffusers import DiffusionPipeline
44
+
45
+ pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-schnell")
46
+ pipe.load_lora_weights("aihpi/flux-fashion-lora")
47
+
48
+ prompt = "Neutral Gray Background, Wide-angle, high quality, detailed, ultrarealistic photography, A beige linen shirt with short sleeves, a round neckline, and a subtle texture. The shirt has minimal stitching visible at the seams."
49
+ image = pipe(prompt).images[0]
50
+ ```
51
 
52
  ## Download model
53