prithivMLmods commited on
Commit
79ba05e
·
verified ·
1 Parent(s): 5d0a46e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -1
README.md CHANGED
@@ -22,6 +22,52 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  ## Sample 768 x 1024
26
 
27
  ![prithivMLmods/EBook-Creative-Cover-Flux-LoRA](images/E4.png)
@@ -34,7 +80,6 @@ license: creativeml-openrail-m
34
 
35
  You should use `EBook Cover` to trigger the image generation.
36
 
37
-
38
  ## Download model
39
 
40
  Weights for this model are available in Safetensors format.
 
22
 
23
  <Gallery />
24
 
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/Ton618-Epic-Realism-Flux-LoRA**
31
+
32
+ Image Processing Parameters
33
+
34
+ | Parameter | Value | Parameter | Value |
35
+ |---------------------------|--------|---------------------------|--------|
36
+ | LR Scheduler | constant | Noise Offset | 0.03 |
37
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
38
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
39
+ | Network Alpha | 32 | Repeat & Steps | 23 & 2240|
40
+ | Epoch | 15 | Save Every N Epochs | 1 |
41
+
42
+ Labeling: florence2-en(natural language & English)
43
+
44
+ Total Images Used for Training : 17 [ Hi-RES ]
45
+
46
+ ## Best Dimensions
47
+
48
+ - 1024 x 1024 (Default)
49
+ - 768 x 1024
50
+
51
+ ## Setting Up
52
+ ```
53
+ import torch
54
+ from pipelines import DiffusionPipeline
55
+
56
+ base_model = "black-forest-labs/FLUX.1-dev"
57
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
58
+
59
+ lora_repo = "prithivMLmods/EBook-Creative-Cover-Flux-LoRA"
60
+ trigger_word = "EBook Cover"
61
+ pipe.load_lora_weights(lora_repo)
62
+
63
+ device = torch.device("cuda")
64
+ pipe.to(device)
65
+ ```
66
+
67
+ ## Data source
68
+
69
+ - https://playground.com/
70
+
71
  ## Sample 768 x 1024
72
 
73
  ![prithivMLmods/EBook-Creative-Cover-Flux-LoRA](images/E4.png)
 
80
 
81
  You should use `EBook Cover` to trigger the image generation.
82
 
 
83
  ## Download model
84
 
85
  Weights for this model are available in Safetensors format.