prithivMLmods
commited on
Commit
•
433928b
1
Parent(s):
37fbb6a
Update README.md
Browse files
README.md
CHANGED
@@ -23,6 +23,59 @@ license: creativeml-openrail-m
|
|
23 |
|
24 |
<Gallery />
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
## Trigger words
|
28 |
|
|
|
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/Canopus-Car-Flux-Dev-LoRA**
|
31 |
+
|
32 |
+
Image Processing Parameters
|
33 |
+
|
34 |
+
| Parameter | Value | Parameter | Value |
|
35 |
+
|---------------------------|--------|---------------------------|--------|
|
36 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
37 |
+
| Optimizer | AdamW8bit | Multires Noise Discount | 0.1 |
|
38 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
39 |
+
| Network Alpha | 32 | Repeat & Steps | 22 & 1.5K+ |
|
40 |
+
| Epoch | 15 | Save Every N Epochs | 1 |
|
41 |
+
|
42 |
+
Labeling: florence2-en(natural language & English)
|
43 |
+
|
44 |
+
Total Images Used for Training : 40+ [ Hi-RES ]
|
45 |
+
|
46 |
+
& More ...............
|
47 |
+
|
48 |
+
## Trigger prompts
|
49 |
+
|
50 |
+
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
|
51 |
+
|
52 |
+
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
|
53 |
+
|
54 |
+
Bugatti Veyron in cobalt blue metallic, high detail, octane render, 8k
|
55 |
+
|
56 |
+
|
57 |
+
| Parameter | Value |
|
58 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
59 |
+
| Prompt | Bugatti Veyron in cobalt blue metallic, high detail, octane render, 8k |
|
60 |
+
| Sampler | euler |
|
61 |
+
|
62 |
+
## Setting Up
|
63 |
+
|
64 |
+
```
|
65 |
+
import torch
|
66 |
+
from pipelines import DiffusionPipeline
|
67 |
+
|
68 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
69 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
70 |
+
|
71 |
+
lora_repo = "prithivMLmods/Canopus-Car-Flux-Dev-LoRA"
|
72 |
+
trigger_word = "car" # Leave trigger_word blank if not used.
|
73 |
+
pipe.load_lora_weights(lora_repo)
|
74 |
+
|
75 |
+
device = torch.device("cuda")
|
76 |
+
pipe.to(device)
|
77 |
+
```
|
78 |
+
|
79 |
|
80 |
## Trigger words
|
81 |
|