prithivMLmods
commited on
Commit
•
bbcdc12
1
Parent(s):
b8049dc
Update README.md
Browse files
README.md
CHANGED
@@ -29,6 +29,59 @@ license: creativeml-openrail-m
|
|
29 |
<Gallery />
|
30 |
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
## Trigger words
|
33 |
|
34 |
You should use `Snoopy Charlie Brown` to trigger the image generation.
|
|
|
29 |
<Gallery />
|
30 |
|
31 |
|
32 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
33 |
+
|
34 |
+
## Model description
|
35 |
+
|
36 |
+
**prithivMLmods/Canopus-Snoopy-Charlie-Brown-Flux-LoRA**
|
37 |
+
|
38 |
+
Image Processing Parameters
|
39 |
+
|
40 |
+
| Parameter | Value | Parameter | Value |
|
41 |
+
|---------------------------|--------|---------------------------|--------|
|
42 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
43 |
+
| Optimizer | AdamW8bit | Multires Noise Discount | 0.1 |
|
44 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
45 |
+
| Network Alpha | 32 | Repeat & Steps | 25 & 1.7K+ |
|
46 |
+
| Epoch | 20 | Save Every N Epochs | 1 |
|
47 |
+
|
48 |
+
Labeling: florence2-en(natural language & English)
|
49 |
+
|
50 |
+
Total Images Used for Training : 100+ [ Hi-RES ]
|
51 |
+
|
52 |
+
& More ...............
|
53 |
+
|
54 |
+
## Trigger prompts
|
55 |
+
|
56 |
+
A black ford mustang parked in the parking lot, in the style of futurism influence, uhd image, furaffinity, focus, street photography, thin steel forms, 32k uhd --ar 2:3 --v 5
|
57 |
+
|
58 |
+
Ferrari car f3 458 tt, in the style of liam wong, fujifilm x-t4, multiple exposure, tsubasa nakai, uhd image, pinturicchio, crimson --ar 16:9 --v 5.2
|
59 |
+
|
60 |
+
Bugatti Veyron in cobalt blue metallic, high detail, octane render, 8k
|
61 |
+
|
62 |
+
|
63 |
+
| Parameter | Value |
|
64 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
65 |
+
| Prompt | Bugatti Veyron in cobalt blue metallic, high detail, octane render, 8k |
|
66 |
+
| Sampler | euler |
|
67 |
+
|
68 |
+
## Setting Up
|
69 |
+
|
70 |
+
```
|
71 |
+
import torch
|
72 |
+
from pipelines import DiffusionPipeline
|
73 |
+
|
74 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
75 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
76 |
+
|
77 |
+
lora_repo = "prithivMLmods/Canopus-Snoopy-Charlie-Brown-Flux-LoRA"
|
78 |
+
trigger_word = "Snoopy Charlie Brown" # Leave trigger_word blank if not used.
|
79 |
+
pipe.load_lora_weights(lora_repo)
|
80 |
+
|
81 |
+
device = torch.device("cuda")
|
82 |
+
pipe.to(device)
|
83 |
+
```
|
84 |
+
|
85 |
## Trigger words
|
86 |
|
87 |
You should use `Snoopy Charlie Brown` to trigger the image generation.
|