prithivMLmods commited on
Commit
b98dea7
1 Parent(s): e075a02

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md CHANGED
@@ -22,6 +22,42 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Trigger words
27
 
 
22
 
23
  <Gallery />
24
 
25
+ ## Model description
26
+
27
+ **prithivMLmods/Ton618-Tarot-Cards-Flux-LoRA**
28
+
29
+ Image Processing Parameters
30
+
31
+ | Parameter | Value | Parameter | Value |
32
+ |---------------------------|--------|---------------------------|--------|
33
+ | LR Scheduler | constant | Noise Offset | 0.03 |
34
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
35
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
36
+ | Network Alpha | 32 | Repeat & Steps | 21 & 2K |
37
+ | Epoch | 13 | Save Every N Epochs | 1 |
38
+
39
+ Labeling: florence2-en(natural language & English)
40
+
41
+ Total Images Used for Training : 17 [ Hi-RES ]
42
+
43
+ ## Setting Up
44
+ ```
45
+ import torch
46
+ from pipelines import DiffusionPipeline
47
+
48
+ base_model = "black-forest-labs/FLUX.1-dev"
49
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
50
+
51
+ lora_repo = "prithivMLmods/Ton618-Tarot-Cards-Flux-LoRA"
52
+ trigger_word = "Tarot card"
53
+ pipe.load_lora_weights(lora_repo)
54
+
55
+ device = torch.device("cuda")
56
+ pipe.to(device)
57
+ ```
58
+ ## Data source
59
+
60
+ - https://playground.com/
61
 
62
  ## Trigger words
63