prithivMLmods commited on
Commit
c29ba81
1 Parent(s): 3ce3aab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -1
README.md CHANGED
@@ -23,12 +23,51 @@ license: creativeml-openrail-m
23
 
24
  <Gallery />
25
 
 
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ## Trigger words
28
 
29
  You should use `Green Cartoon` to trigger the image generation.
30
 
31
-
32
  ## Download model
33
 
34
  Weights for this model are available in Safetensors format.
 
23
 
24
  <Gallery />
25
 
26
+ - Hosted Here🧨: https://huggingface.co/spaces/prithivMLmods/FLUX-LoRA-DLC
27
 
28
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
29
+
30
+ ## Model description
31
+
32
+ **prithivMLmods/Green-Cartoon-Flux-LoRA**
33
+
34
+ Image Processing Parameters
35
+
36
+ | Parameter | Value | Parameter | Value |
37
+ |---------------------------|--------|---------------------------|--------|
38
+ | LR Scheduler | constant | Noise Offset | 0.03 |
39
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
40
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
41
+ | Network Alpha | 32 | Repeat & Steps | 20 & 2110|
42
+ | Epoch | 15 | Save Every N Epochs | 1 |
43
+
44
+ Labeling: florence2-en(natural language & English)
45
+
46
+ Total Images Used for Training : 11 [ Hi-RES ]
47
+
48
+ ## Best Dimensions
49
+
50
+ - 1024 x 1024 (Default)
51
+
52
+ ## Setting Up
53
+ ```
54
+ import torch
55
+ from pipelines import DiffusionPipeline
56
+
57
+ base_model = "black-forest-labs/FLUX.1-dev"
58
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
59
+
60
+ lora_repo = "prithivMLmods/Green-Cartoon-Flux-LoRA"
61
+ trigger_word = "Green Cartoon"
62
+ pipe.load_lora_weights(lora_repo)
63
+
64
+ device = torch.device("cuda")
65
+ pipe.to(device)
66
+ ```
67
  ## Trigger words
68
 
69
  You should use `Green Cartoon` to trigger the image generation.
70
 
 
71
  ## Download model
72
 
73
  Weights for this model are available in Safetensors format.