prithivMLmods commited on
Commit
a4d6287
·
verified ·
1 Parent(s): 384d745

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -2
README.md CHANGED
@@ -24,16 +24,55 @@ base_model: black-forest-labs/FLUX.1-dev
24
  instance_prompt: Real Claymation
25
  license: apache-2.0
26
  ---
27
- # Real-Claymation
28
 
29
  <Gallery />
30
 
 
 
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  ## Trigger words
33
 
34
  You should use `Real Claymation` to trigger the image generation.
35
 
36
-
37
  ## Download model
38
 
39
  Weights for this model are available in Safetensors format.
 
24
  instance_prompt: Real Claymation
25
  license: apache-2.0
26
  ---
27
+ ![szdfcvsd.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/zE3YsMK-NZHqXABBpp8Eu.png)
28
 
29
  <Gallery />
30
 
31
+ # Model description for Real-Claymation
32
+ Image Processing Parameters
33
 
34
+ | Parameter | Value | Parameter | Value |
35
+ |---------------------------|--------|---------------------------|--------|
36
+ | LR Scheduler | constant | Noise Offset | 0.03 |
37
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
38
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
39
+ | Network Alpha | 32 | Repeat & Steps | 25 & 3100 |
40
+ | Epoch | 21 | Save Every N Epochs | 1 |
41
+
42
+ Labeling: florence2-en(natural language & English)
43
+
44
+ Total Images Used for Training : 28
45
+
46
+ ## Best Dimensions & Inference
47
+
48
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
49
+ |-----------------|------------------|---------------------------|
50
+ | 1280 x 832 | 3:2 | Best |
51
+ | 1024 x 1024 | 1:1 | Default |
52
+
53
+ ### Inference Range
54
+
55
+ - **Recommended Inference Steps:** 30–35
56
+
57
+ ## Setting Up
58
+ ```python
59
+ import torch
60
+ from pipelines import DiffusionPipeline
61
+
62
+ base_model = "black-forest-labs/FLUX.1-dev"
63
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
64
+
65
+ lora_repo = "strangerzonehf/Real-Claymation"
66
+ trigger_word = "333 Pro Sketch"
67
+ pipe.load_lora_weights(lora_repo)
68
+
69
+ device = torch.device("cuda")
70
+ pipe.to(device)
71
+ ```
72
  ## Trigger words
73
 
74
  You should use `Real Claymation` to trigger the image generation.
75
 
 
76
  ## Download model
77
 
78
  Weights for this model are available in Safetensors format.