prithivMLmods commited on
Commit
0ead6a7
1 Parent(s): 15d5389

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -39,17 +39,58 @@ license: creativeml-openrail-m
39
 
40
  <Gallery />
41
 
 
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  ## Sample Image
44
 
45
  ![prithivMLmods/SD3.5-Large-Anime-LoRA](images/444.webp)
46
 
47
  ![prithivMLmods/SD3.5-Large-Anime-LoRA](images/555.webp)
48
 
49
- ## Trigger words
50
-
51
- You should use `Anime 35` to trigger the image generation.
52
 
 
 
53
 
54
  ## Download model
55
 
 
39
 
40
  <Gallery />
41
 
42
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
43
 
44
+ ## Model description
45
+
46
+ **prithivMLmods/SD3.5-Large-Anime-LoRA**
47
+
48
+ Image Processing Parameters
49
+
50
+ | Parameter | Value | Parameter | Value |
51
+ |---------------------------|--------|---------------------------|--------|
52
+ | LR Scheduler | constant | Noise Offset | 0.03 |
53
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
54
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
55
+ | Network Alpha | 32 | Repeat & Steps | 25 & 2.7K |
56
+ | Epoch | 15 | Save Every N Epochs | 1 |
57
+
58
+ Labeling: florence2-en(natural language & English)
59
+
60
+ Total Images Used for Training : 23
61
+
62
+ ## Setting up
63
+
64
+ ```python
65
+ import torch
66
+ from diffusers import StableDiffusion3Pipeline
67
+
68
+ pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.bfloat16)
69
+ pipe.load_lora_weights("prithivMLmods/SD3.5-Large-Anime-LoRA", weight_name="SD3.5-Large-Anime-LoRA.safetensors")
70
+ pipe.fuse_lora(lora_scale=1.0)
71
+ pipe.to("cuda")
72
+
73
+ prompt = "Man in the style of dark beige and brown, uhd image, youthful protagonists, nonrepresentational photography"
74
+ negative_prompt = "(lowres, low quality, worst quality)"
75
+
76
+ image = pipe(prompt=prompt,
77
+ negative_prompt=negative_prompt
78
+ num_inference_steps=24,
79
+ guidance_scale=4.0,
80
+ width=960, height=1280,
81
+ ).images[0]
82
+ image.save(f"example.jpg")
83
+ ```
84
  ## Sample Image
85
 
86
  ![prithivMLmods/SD3.5-Large-Anime-LoRA](images/444.webp)
87
 
88
  ![prithivMLmods/SD3.5-Large-Anime-LoRA](images/555.webp)
89
 
90
+ ## Trigger words 🧨
 
 
91
 
92
+ > [!WARNING]
93
+ > **Trigger words:** You should use `Anime 35` to trigger the image generation.
94
 
95
  ## Download model
96