Update README.md
Browse files
README.md
CHANGED
@@ -21,9 +21,24 @@ Have fun creating realistic, high-quality fashion items!
|
|
21 |
|
22 |
You can see detailed instructions to finetune and inference the model in my github repository: [easy-finetuning-stable-diffusion](https://github.com/hahminlew/easy-finetuning-stable-diffusion).
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
# Inference
|
25 |
|
26 |
-
```
|
27 |
from diffusers import DiffusionPipeline
|
28 |
import torch
|
29 |
|
@@ -37,20 +52,6 @@ image = pipe(prompt, num_inference_steps=30, guidance_scale=7.5).images[0]
|
|
37 |
image.save("example.png")
|
38 |
```
|
39 |
|
40 |
-
# Results
|
41 |
-
|
42 |
-
![img](./generated_results.png)
|
43 |
-
|
44 |
-
`Prompts`
|
45 |
-
- `outer, The Nike x Balenciaga down jacket black, a photography of a black down jacket with a logo on the chest.`
|
46 |
-
- `top, (W) Balenciaga x Nike Slip Hoodie Dress Cream, a photography of a cream dress and a hood on.`
|
47 |
-
- `bottom, Supreme Animal Print Baggy Jean Washed Indigo - 23FW, a photography of a dark blue jean with an animal printing on.`
|
48 |
-
- `outer, The North Face x Supreme White Label Nuptse Down Jacket Cream Beige, a photography of a white puffer jacket with a red box logo on the front.`
|
49 |
-
- `top, The Supreme x Stussy Oversized Cotton Black Hoodie, a photography of a black shirt with a hood on and a logo on the chest.`
|
50 |
-
- `bottom, The IAB Studio x Stussy Dye Sweat Wooven Shorts, a photography of a short pants with a logo.`
|
51 |
-
|
52 |
-
**A more precise model is now available. Please try to generate products through prompt engineering!*
|
53 |
-
|
54 |
# LoRA text2image fine-tuning Info.
|
55 |
|
56 |
These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0. The weights were fine-tuned on the [hahminlew/kream-product-blip-captions](https://huggingface.co/datasets/hahminlew/kream-product-blip-captions) dataset.
|
|
|
21 |
|
22 |
You can see detailed instructions to finetune and inference the model in my github repository: [easy-finetuning-stable-diffusion](https://github.com/hahminlew/easy-finetuning-stable-diffusion).
|
23 |
|
24 |
+
# Results
|
25 |
+
|
26 |
+
![img](./generated_results.png)
|
27 |
+
|
28 |
+
`Prompts`
|
29 |
+
- `outer, The Nike x Balenciaga down jacket black, a photography of a black down jacket with a logo on the chest.`
|
30 |
+
- `top, (W) Balenciaga x Nike Slip Hoodie Dress Cream, a photography of a cream dress and a hood on.`
|
31 |
+
- `bottom, Supreme Animal Print Baggy Jean Washed Indigo - 23FW, a photography of a dark blue jean with an animal printing on.`
|
32 |
+
- `outer, The North Face x Supreme White Label Nuptse Down Jacket Cream Beige, a photography of a white puffer jacket with a red box logo on the front.`
|
33 |
+
- `top, The Supreme x Stussy Oversized Cotton Black Hoodie, a photography of a black shirt with a hood on and a logo on the chest.`
|
34 |
+
- `bottom, The IAB Studio x Stussy Dye Sweat Wooven Shorts, a photography of a short pants with a logo.`
|
35 |
+
|
36 |
+
**A more precise model is now available. Please try to generate products through prompt engineering!*
|
37 |
+
|
38 |
+
|
39 |
# Inference
|
40 |
|
41 |
+
```python
|
42 |
from diffusers import DiffusionPipeline
|
43 |
import torch
|
44 |
|
|
|
52 |
image.save("example.png")
|
53 |
```
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
# LoRA text2image fine-tuning Info.
|
56 |
|
57 |
These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0. The weights were fine-tuned on the [hahminlew/kream-product-blip-captions](https://huggingface.co/datasets/hahminlew/kream-product-blip-captions) dataset.
|