prithivMLmods commited on
Commit
82018a5
1 Parent(s): a4b07d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -24,6 +24,59 @@ license: creativeml-openrail-m
24
  <Gallery />
25
 
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ## Trigger words
28
 
29
  You should use `cute-kawaii` to trigger the image generation.
 
24
  <Gallery />
25
 
26
 
27
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
28
+
29
+ ## Model description
30
+
31
+ **prithivMLmods/Canopus-Cute-Kawaii-Flux-LoRA**
32
+
33
+ Image Processing Parameters
34
+
35
+ | Parameter | Value | Parameter | Value |
36
+ |---------------------------|--------|---------------------------|--------|
37
+ | LR Scheduler | constant | Noise Offset | 0.03 |
38
+ | Optimizer | AdamW8bit | Multires Noise Discount | 0.1 |
39
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
40
+ | Network Alpha | 32 | Repeat & Steps | 25 & 2K+ |
41
+ | Epoch | 17 | Save Every N Epochs | 1 |
42
+
43
+ Labeling: florence2-en(natural language & English)
44
+
45
+ Total Images Used for Training : 70+ [ Hi-RES ]
46
+
47
+ & More ...............
48
+
49
+ ## Trigger prompts
50
+
51
+ Cute-kawaii, An animated image of an ice cream cone on an orange background. The ice cream in the middle of the image is white with brown dots on it. There are black eyes on the ice cream. There is a smiley face on the top of the icecream cone. The cone is made up of wicker and has ridges on the sides. The background is a vibrant orange color.
52
+
53
+ Cute-kawaii, An animated image of two brown bears on a light blue background. The bear on the left is white with brown spots on it's head and ears.while the one on the right is light brown. The bears are facing each other.with their noses pointing to the right. Both bears have black eyes and black noses.
54
+
55
+ Cute-kawaii, A vibrant red background with a triangle shaped watermelon in the center. The watermelon is in the shape of a triangle and has a smiley face on it. Below the triangle is the text "wat-a-melon" in white letters.
56
+
57
+ | Parameter | Value |
58
+ |-----------------|---------------------------------------------------------------------------------------|
59
+ | Prompt | Cute-kawaii, An animated image of two brown bears on a light blue background. The bear on the left is white with brown spots on it's head and ears.while the one on the right is light brown. The bears are facing each other.with their noses pointing to the right. Both bears have black eyes and black noses. |
60
+ | Sampler | euler |
61
+
62
+ ## Setting Up
63
+
64
+ ```
65
+ import torch
66
+ from pipelines import DiffusionPipeline
67
+
68
+ base_model = "black-forest-labs/FLUX.1-dev"
69
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
70
+
71
+ lora_repo = "prithivMLmods/Canopus-Cute-Kawaii-Flux-LoRA"
72
+ trigger_word = "cute-kawaii" # Leave trigger_word blank if not used.
73
+ pipe.load_lora_weights(lora_repo)
74
+
75
+ device = torch.device("cuda")
76
+ pipe.to(device)
77
+ ```
78
+
79
+
80
  ## Trigger words
81
 
82
  You should use `cute-kawaii` to trigger the image generation.