prithivMLmods commited on
Commit
212bb53
1 Parent(s): eca27e7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md CHANGED
@@ -40,7 +40,46 @@ license: creativeml-openrail-m
40
 
41
  <Gallery />
42
 
 
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  ## Trigger words
45
 
46
  You should use `toon mix` to trigger the image generation.
 
40
 
41
  <Gallery />
42
 
43
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
44
 
45
+ ## Model description
46
+
47
+ **prithivMLmods/Flux.1-Dev-Realtime-Toon-Mix**
48
+
49
+ Image Processing Parameters
50
+
51
+ | Parameter | Value | Parameter | Value |
52
+ |---------------------------|--------|---------------------------|--------|
53
+ | LR Scheduler | constant | Noise Offset | 0.03 |
54
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
55
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
56
+ | Network Alpha | 32 | Repeat & Steps | 17 & 2900 |
57
+ | Epoch | 15 | Save Every N Epochs | 1 |
58
+
59
+ Labeling: florence2-en(natural language & English)
60
+
61
+ Total Images Used for Training : 29
62
+
63
+ ## Best Dimensions
64
+
65
+ - 768 x 1024 (Best)
66
+ - 1024 x 1024 (Default)
67
+
68
+ ## Setting Up
69
+ ```python
70
+ import torch
71
+ from pipelines import DiffusionPipeline
72
+
73
+ base_model = "black-forest-labs/FLUX.1-dev"
74
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
75
+
76
+ lora_repo = "prithivMLmods/Flux.1-Dev-Realtime-Toon-Mix"
77
+ trigger_word = "toon mix"
78
+ pipe.load_lora_weights(lora_repo)
79
+
80
+ device = torch.device("cuda")
81
+ pipe.to(device)
82
+ ```
83
  ## Trigger words
84
 
85
  You should use `toon mix` to trigger the image generation.