Update README.md
Browse files
README.md
CHANGED
@@ -4,10 +4,17 @@ tags:
|
|
4 |
- lora
|
5 |
- diffusers
|
6 |
- template:diffusion-lora
|
|
|
7 |
widget:
|
8 |
-
- text: '
|
9 |
output:
|
10 |
-
url: images/
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
base_model: stabilityai/stable-diffusion-3.5-large-turbo
|
12 |
instance_prompt: Simple Doodle
|
13 |
license: creativeml-openrail-m
|
@@ -16,14 +23,61 @@ license: creativeml-openrail-m
|
|
16 |
|
17 |
<Gallery />
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
## Trigger words
|
21 |
|
22 |
You should use `Simple Doodle` to trigger the image generation.
|
23 |
|
24 |
-
|
25 |
## Download model
|
26 |
|
27 |
Weights for this model are available in Safetensors format.
|
28 |
|
29 |
-
[Download](/prithivMLmods/Simple-Doodle-SD3.5-Turbo/tree/main) them in the Files & versions tab.
|
|
|
4 |
- lora
|
5 |
- diffusers
|
6 |
- template:diffusion-lora
|
7 |
+
- Doodle
|
8 |
widget:
|
9 |
+
- text: 'Simple Doodle, A cartoon drawing of a woman with long dark brown hair and a white face. The womans face has black eyes, a black nose, and a black smile. She is wearing a peach colored top with a white collar. The background is a light beige color.'
|
10 |
output:
|
11 |
+
url: images/SD1.webp
|
12 |
+
- text: 'Simple Doodle, A cartoon drawing of a mountain range with snow on it. The mountain range is outlined in a light green color. There is a pink mountain range in the middle of the mountain range. There are trees in the bottom left corner of the image. The sky is a light blue color and there are clouds in the top right corner. The sun is shining through the clouds.'
|
13 |
+
output:
|
14 |
+
url: images/SD2.webp
|
15 |
+
- text: 'Simple Doodle, A cartoon drawing of a boy with short black hair and a yellow shirt. The boy has a smile on his face. The background is a peach color and there are green leaves on either side of the boy. There are white dots on the peach color background.'
|
16 |
+
output:
|
17 |
+
url: images/SD3.webp
|
18 |
base_model: stabilityai/stable-diffusion-3.5-large-turbo
|
19 |
instance_prompt: Simple Doodle
|
20 |
license: creativeml-openrail-m
|
|
|
23 |
|
24 |
<Gallery />
|
25 |
|
26 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
27 |
+
|
28 |
+
## Model description
|
29 |
+
|
30 |
+
**prithivMLmods/Simple-Doodle-SD3.5-Turbo**
|
31 |
+
|
32 |
+
Image Processing Parameters
|
33 |
+
|
34 |
+
| Parameter | Value | Parameter | Value |
|
35 |
+
|---------------------------|--------|---------------------------|--------|
|
36 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
37 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
38 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
39 |
+
| Network Alpha | 32 | Repeat & Steps | 20 & 2300 |
|
40 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
41 |
+
|
42 |
+
Labeling: florence2-en(natural language & English)
|
43 |
+
|
44 |
+
Total Images Used for Training : 18
|
45 |
+
|
46 |
+
## App File Structure
|
47 |
+
|
48 |
+
/project-root/
|
49 |
+
|
50 |
+
βββ .gitattributes
|
51 |
+
βββ README.md
|
52 |
+
βββ app.py
|
53 |
+
βββ pythonproject.py
|
54 |
+
|
55 |
+
|
56 |
+
## Setting Up
|
57 |
+
|
58 |
+
```
|
59 |
+
from diffusers import DiffusionPipeline
|
60 |
+
import torch
|
61 |
+
|
62 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
63 |
+
model_repo_id = "stabilityai/stable-diffusion-3.5-large-turbo"
|
64 |
+
|
65 |
+
torch_dtype = torch.bfloat16 if torch.cuda.is_available() else torch.float32
|
66 |
+
|
67 |
+
pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
|
68 |
+
pipe = pipe.to(device)
|
69 |
+
|
70 |
+
pipe.load_lora_weights("prithivMLmods/Simple-Doodle-SD3.5-Turbo", weight_name="SD3.5-Turbo-Realism-2.0-LoRA.safetensors")
|
71 |
+
trigger_word = "Simple Doodle"
|
72 |
+
pipe.fuse_lora(lora_scale=1.0)
|
73 |
+
```
|
74 |
|
75 |
## Trigger words
|
76 |
|
77 |
You should use `Simple Doodle` to trigger the image generation.
|
78 |
|
|
|
79 |
## Download model
|
80 |
|
81 |
Weights for this model are available in Safetensors format.
|
82 |
|
83 |
+
[Download](/prithivMLmods/Simple-Doodle-SD3.5-Turbo/tree/main) them in the Files & versions tab.
|