arthurtmonyman commited on
Commit
b6745e6
·
verified ·
1 Parent(s): d063429

Initial model card

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: wtfpl
3
+ base_model: black-forest-labs/FLUX.1-dev
4
+ pipeline_tag: text-to-image
5
+ tags:
6
+ - text-to-image
7
+ - lora
8
+ - diffusers
9
+ - template:diffusion-lora
10
+ - flux
11
+ - flowmatch
12
+ - stationthis
13
+ widget:
14
+ - text: "maccinft"
15
+ output:
16
+ url: samples/sample_000.jpg
17
+ instance_prompt: "maccinft"
18
+ training_steps: 4000
19
+ network_type: lora
20
+ library_name: ai-toolkit
21
+ ---
22
+
23
+ # maccinft
24
+
25
+ The maccinft LoRA model enables the generation of images in a unique custom style, characterized by vibrant colors and intricate detail. This model is ideal for artists and creators looking to infuse their work with a distinctive visual flair.
26
+
27
+ **Trigger word:** `maccinft`
28
+
29
+ ## Sample Outputs
30
+
31
+ | | |
32
+ |:---:|:---:|
33
+ | ![Sample 1](samples/sample_000.jpg) | ![Sample 2](samples/sample_001.jpg) |
34
+ | *Sample 1* | *Sample 2* |
35
+ | ![Sample 3](samples/sample_002.jpg) | ![Sample 4](samples/sample_003.jpg) |
36
+ | *Sample 3* | *Sample 4* |
37
+
38
+ ## Usage
39
+
40
+ ### ComfyUI
41
+
42
+ 1. Download the `.safetensors` file from the Files tab
43
+ 2. Place in `ComfyUI/models/loras/`
44
+ 3. Use the **Load LoRA** node with strength `0.8-1.0`
45
+ 4. Include `maccinft` in your prompt
46
+
47
+ ### Diffusers
48
+
49
+ ```python
50
+ import torch
51
+ from diffusers import FluxPipeline
52
+
53
+ pipe = FluxPipeline.from_pretrained(
54
+ "black-forest-labs/FLUX.1-dev",
55
+ torch_dtype=torch.bfloat16
56
+ )
57
+ pipe.load_lora_weights("ms2stationthis/maccinft")
58
+ pipe.to("cuda")
59
+
60
+ image = pipe(
61
+ prompt="maccinft portrait, soft lighting, detailed",
62
+ guidance_scale=3.5-4.0,
63
+ num_inference_steps=20-30,
64
+ generator=torch.Generator("cuda").manual_seed(42)
65
+ ).images[0]
66
+
67
+ image.save("output.png")
68
+ ```
69
+
70
+ ## Recommended Settings
71
+
72
+ | Parameter | Value |
73
+ |-----------|-------|
74
+ | LoRA Strength | 0.8-1.0 |
75
+ | Guidance Scale | 3.5-4.0 |
76
+ | Inference Steps | 20-30 |
77
+ | Resolution | 1024x1024 |
78
+
79
+ ## Example Prompts
80
+
81
+ - `maccinft portrait, soft lighting, detailed`
82
+ - `maccinft in a scenic environment`
83
+
84
+ ## Training Details
85
+
86
+ - **Base model:** black-forest-labs/FLUX.1-dev
87
+ - **Training steps:** 4000
88
+ - **Trigger word:** `maccinft`
89
+ - **Network:** LoRA rank 32, alpha 32
90
+ - **Optimizer:** adamw8bit, lr 1e-4
91
+ - **Precision:** float16
92
+ - **Resolution:** 512, 768, 1024 (multi-res bucketed)
93
+
94
+ ## About
95
+
96
+ Trained using [StationThis](https://miladystation2.net) — an AI creative platform powered by $MS2. Train your own LoRAs via [@stationthisbot](https://t.me/stationthisbot) on Telegram.
97
+
98
+ ---
99
+
100
+ <sub>Generated by StationThis Training Pipeline</sub>