prithivMLmods commited on
Commit
9061c02
·
verified ·
1 Parent(s): 6b119b8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -4
README.md CHANGED
@@ -9,23 +9,79 @@ tags:
9
  - Art
10
  - Design
11
  widget:
12
- - text: '-'
13
  output:
14
- url: images/d9b2a601b830851717dfc0640ed1c0f8.jpg
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  base_model: black-forest-labs/FLUX.1-dev
16
  instance_prompt: NFT V4
17
  license: creativeml-openrail-m
18
  ---
19
- # Flux-NTFv4-Designs-LoRA
20
 
21
  <Gallery />
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  ## Trigger words
25
 
26
  You should use `NFT V4` to trigger the image generation.
27
 
28
-
29
  ## Download model
30
 
31
  Weights for this model are available in Safetensors format.
 
9
  - Art
10
  - Design
11
  widget:
12
+ - text: 'NFT V4, Captured at eye-level, a close-up shot of a cats face is depicted. The cats fur is a vibrant shade of pink, with a mix of brown and yellow. The eyes are tinted black, with yellow accents. The ears of the cat are a light pink, and the cats nose is a darker pink. The background is a dark brown, adding a pop of color to the scene.'
13
  output:
14
+ url: images/1.png
15
+ - text: 'NFT V4, a close-up shot of a spiderman cat wearing a red and black spiderman costume. The cats face is adorned with a black nose, black ears, and white eyes. The background is a vibrant shade of pink, adding a pop of color to the scene.'
16
+ output:
17
+ url: images/2.png
18
+ - text: 'NFT V4, Captured in a low-angle perspective, a medium-sized cats face is adorned with a maroon baseball cap, white sunglasses, and a silver chain around its ears. The cats eyes are tinted black, and the cats whiskers are white, adding a pop of color to the scene. Its mouth is slightly open, as if its lips are pursed. Its nose is a dark brown, and its mouth is a lighter shade of brown, while the cat is wearing a white t-shirt with a silver necklace around its neck. The background is a solid black, creating a stark contrast to the cat.'
19
+ output:
20
+ url: images/3.png
21
+ - text: 'NFT V4, a medium-sized bulldog is adorned with a black leather jacket and a silver chain around its neck. The bulldogs eyes are covered in a pair of tinted sunglasses, adding a pop of color to the otherwise monochromatic image. The dogs mouth is slightly open, revealing a small white cigarette in its mouth. The background is a deep blue, creating a stark contrast to the dogs face.'
22
+ output:
23
+ url: images/4.png
24
+ - text: 'NFT V4: A head-on close-up of a fluffy rabbits face with multicolored fur in shades of teal, purple, and white. The rabbit is wearing round gold-rimmed glasses and a black bowtie. Its nose is pale pink, and its whiskers are long and white. The background is a gradient of lavender and light yellow, adding a soft and dreamy feel to the scene.'
25
+ output:
26
+ url: images/5.png
27
+ - text: 'NFT V4: A raccoon depicted in a playful pose, wearing a green hoodie with a "Game Over" text on the front. The raccoons fur is a mix of brown and gray with white accents on its face. Its nose is black, and it has mischievous green eyes. The background is a pixelated video game landscape with floating clouds and coins.'
28
+ output:
29
+ url: images/6.png
30
  base_model: black-forest-labs/FLUX.1-dev
31
  instance_prompt: NFT V4
32
  license: creativeml-openrail-m
33
  ---
34
+ ![strangerzonehf/Flux-NTFv4-Designs-LoRA](images/xx.png)
35
 
36
  <Gallery />
37
 
38
+ ## Model description for NTFv4 Designs LoRA
39
+
40
+ Image Processing Parameters
41
+
42
+ | Parameter | Value | Parameter | Value |
43
+ |---------------------------|--------|---------------------------|--------|
44
+ | LR Scheduler | constant | Noise Offset | 0.03 |
45
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
46
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
47
+ | Network Alpha | 32 | Repeat & Steps | 25 & 3170 |
48
+ | Epoch | 16 | Save Every N Epochs | 1 |
49
+
50
+ Labeling: florence2-en(natural language & English)
51
+
52
+ Total Images Used for Training : 16
53
+
54
+ ## Best Dimensions & Inference
55
+
56
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
57
+ |-----------------|------------------|---------------------------|
58
+ | 1280 x 832 | 3:2 | Best |
59
+ | 1024 x 1024 | 1:1 | Default |
60
+
61
+ ### Inference Range
62
+
63
+ - **Recommended Inference Steps:** 30–35
64
+
65
+ ## Setting Up
66
+ ```python
67
+ import torch
68
+ from pipelines import DiffusionPipeline
69
+
70
+ base_model = "black-forest-labs/FLUX.1-dev"
71
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
72
+
73
+ lora_repo = "strangerzonehf/Flux-NTFv4-Designs-LoRA"
74
+ trigger_word = "NFT V4"
75
+ pipe.load_lora_weights(lora_repo)
76
+
77
+ device = torch.device("cuda")
78
+ pipe.to(device)
79
+ ```
80
 
81
  ## Trigger words
82
 
83
  You should use `NFT V4` to trigger the image generation.
84
 
 
85
  ## Download model
86
 
87
  Weights for this model are available in Safetensors format.