prithivMLmods commited on
Commit
9a2816a
1 Parent(s): d839668

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -3
README.md CHANGED
@@ -4,10 +4,19 @@ tags:
4
  - lora
5
  - diffusers
6
  - template:diffusion-lora
 
 
 
7
  widget:
8
- - text: '-'
9
  output:
10
- url: images/7fa2b10b-2f39-4998-8edd-1d5dbe50ed68.webp
 
 
 
 
 
 
11
  base_model: black-forest-labs/FLUX.1-dev
12
  instance_prompt: Yellow Lasers
13
  license: creativeml-openrail-m
@@ -16,6 +25,47 @@ license: creativeml-openrail-m
16
 
17
  <Gallery />
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  ## Trigger words
21
 
@@ -26,4 +76,4 @@ You should use `Yellow Lasers` to trigger the image generation.
26
 
27
  Weights for this model are available in Safetensors format.
28
 
29
- [Download](/prithivMLmods/Yellow-Laser-Flux-LoRA/tree/main) them in the Files & versions tab.
 
4
  - lora
5
  - diffusers
6
  - template:diffusion-lora
7
+ - Yellow
8
+ - Lasers
9
+ - Flare
10
  widget:
11
+ - text: 'Yellow Lasers, Captured at eye-level on a low-angle perspective, a night-time shot captures a glowing figure of a person running on a wet concrete surface. The figure is adorned with a helmet, adorned with white dots, and a long line of light trails behind it, adding a touch of movement to the scene. The background is a deep black, creating a stark contrast to the figure.'
12
  output:
13
+ url: images/YL1.png
14
+ - text: 'Yellow Lasers, a black and white cat stands on its hind legs, facing the left side of the frame. The cats back is facing the viewer, its front paws are raised in the air, while its tail is stretched out in front of it. The background is dark, creating a stark contrast to the cats body and the lights in the background, adding a touch of color to the scene.'
15
+ output:
16
+ url: images/YL2.png
17
+ - text: 'Yellow Lasers, Captured from a low-angle perspective on a dark stage, a white bicycle is positioned in the center of the frame. The bicycle is adorned with two white lights, one on each side of its body and the other on the back. The bike is positioned on two metal stands, creating a stark contrast against the backdrop of the stage. Two men are standing on the left side of the image, facing away from the camera on the right side. They are dressed in dark clothing, with hats on their heads. A long black cord is stretched across the stage, adding a touch of contrast to the scene.'
18
+ output:
19
+ url: images/YL3.png
20
  base_model: black-forest-labs/FLUX.1-dev
21
  instance_prompt: Yellow Lasers
22
  license: creativeml-openrail-m
 
25
 
26
  <Gallery />
27
 
28
+ - Hosted Here🧨: https://huggingface.co/spaces/prithivMLmods/FLUX-LoRA-DLC
29
+
30
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
31
+
32
+ ## Model description
33
+
34
+ **prithivMLmods/Yellow-Laser-Flux-LoRA**
35
+
36
+ Image Processing Parameters
37
+
38
+ | Parameter | Value | Parameter | Value |
39
+ |---------------------------|--------|---------------------------|--------|
40
+ | LR Scheduler | constant | Noise Offset | 0.03 |
41
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
42
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
43
+ | Network Alpha | 32 | Repeat & Steps | 20 & 2000|
44
+ | Epoch | 10 | Save Every N Epochs | 1 |
45
+
46
+ Labeling: florence2-en(natural language & English)
47
+
48
+ Total Images Used for Training : 13
49
+
50
+ ## Best Dimensions
51
+
52
+ - 1024 x 1024 (Default)
53
+
54
+ ## Setting Up
55
+ ```
56
+ import torch
57
+ from pipelines import DiffusionPipeline
58
+
59
+ base_model = "black-forest-labs/FLUX.1-dev"
60
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
61
+
62
+ lora_repo = "prithivMLmods/Yellow-Laser-Flux-LoRA"
63
+ trigger_word = "Yellow Lasers"
64
+ pipe.load_lora_weights(lora_repo)
65
+
66
+ device = torch.device("cuda")
67
+ pipe.to(device)
68
+ ```
69
 
70
  ## Trigger words
71
 
 
76
 
77
  Weights for this model are available in Safetensors format.
78
 
79
+ [Download](/prithivMLmods/Yellow-Laser-Flux-LoRA/tree/main) them in the Files & versions tab.