prithivMLmods commited on
Commit
de881de
1 Parent(s): 9ffc190

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -22,6 +22,52 @@ 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 | 20 & 1.8K |
37
+ | Epoch | 15 | Save Every N Epochs | 1 |
38
+
39
+ Labeling: florence2-en(natural language & English)
40
+
41
+ Total Images Used for Training : 15 [ 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-Amxtoon-Flux-LoRA"
52
+ trigger_word = "Amxtoon"
53
+ pipe.load_lora_weights(lora_repo)
54
+
55
+ device = torch.device("cuda")
56
+ pipe.to(device)
57
+ ```
58
+ ## Concept Ideation from
59
+
60
+ https://x.com/DarbyBaileyXO/status/1851388809067577805
61
+
62
+ https://x.com/MaxPanRa/status/1851385552844587200
63
+
64
+ https://x.com/aimikummd/status/1851180111648669877
65
+
66
+ Data Source Obtained / Generate from **playground.com**
67
+
68
+ ## Data source
69
+
70
+ Playground: https://playground.com/
71
 
72
  ## Trigger words
73