mehmettozlu commited on
Commit
88e783d
·
verified ·
1 Parent(s): f28b6df

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -3
README.md CHANGED
@@ -1,3 +1,87 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - text-to-image
4
+ - flux
5
+ - lora
6
+ - diffusers
7
+ - transformers
8
+ - template:sd-lora
9
+ - ai-toolkit
10
+
11
+ widget:
12
+ - text: btmnwiro, Batman stands on a rooftop at night, his cape flowing in the wind as he watches over Gotham City.
13
+ The Bat-Signal shines brightly in the cloudy sky, casting a dramatic glow.
14
+ The scene is dark and moody, with a cinematic noir atmosphere, inspired by classic animated series.
15
+ output:
16
+ url: batman1.png
17
+ - text: btmnwiro, animated, Batman in a stylized, noir-inspired animated design,
18
+ standing on a rooftop with Gotham’s skyline in the background.
19
+ His cape flows in the wind, and his eyes glow white in the darkness.
20
+ output:
21
+ url: batman3.png
22
+
23
+ license: other
24
+ instance_prompt: btmnwiro
25
+ base_model:
26
+ - black-forest-labs/FLUX.1-dev
27
+ license_name: flux-1-dev-non-commercial-license
28
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
29
+ ---
30
+
31
+ <div align="center">
32
+ <img src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/wiro_logo.png" width="15%" alt="Wiro AI" />
33
+ </div>
34
+ <hr>
35
+ <div align="center" style="line-height: 1;">
36
+ <a href="https://www.wiro.ai/" target="_blank" style="margin: 2px;">
37
+ <img alt="Homepage" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/homepage.svg" style="display: inline-block; vertical-align: middle;"/>
38
+ </a>
39
+ <a href="https://huggingface.co/WiroAI" target="_blank" style="margin: 2px;">
40
+ <img alt="Hugging Face" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/huggingface.svg" style="display: inline-block; vertical-align: middle;"/>
41
+ </a>
42
+ <a href="https://civitai.com/user/wiroai" target="_blank" style="margin: 2px;">
43
+ <img alt="CivitAI" src="https://huggingface.co/WiroAI/pokemon-flux-lora/resolve/main/civitai.svg" style="display: inline-block; vertical-align: middle;"/>
44
+ </a>
45
+ </div>
46
+ <div align="center" style="line-height: 1;">
47
+ <a href="https://instagram.com/wiroai" target="_blank" style="margin: 2px;">
48
+ <img alt="Instagram Follow" src="https://img.shields.io/badge/Instagram-wiroai-555555?logo=instagram&logoColor=white&labelColor=E4405F" style="display: inline-block; vertical-align: middle;"/>
49
+ </a>
50
+ <a href="https://x.com/wiroai" target="_blank" style="margin: 2px;">
51
+ <img alt="X Follow" src="https://img.shields.io/badge/X-wiroai-555555?logo=x&logoColor=white&labelColor=000000" style="display: inline-block; vertical-align: middle;"/>
52
+ </a>
53
+ </div>
54
+ <div align="center" style="line-height: 1;">
55
+ <a href="https://wiro.ai/agreement/terms-of-service" style="margin: 2px;">
56
+ <img alt="License" src="https://img.shields.io/badge/License-apache 2.0-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
57
+ </a>
58
+ </div>
59
+
60
+ ## Model Details
61
+
62
+ ### Model Description
63
+
64
+ This LoRA is trained for anyone who like Batman.
65
+
66
+
67
+ - **Developed by:** [Wiro AI - ML Team]
68
+ - **Shared by:** [Wiro AI](https://wiro.ai/)
69
+
70
+
71
+ <Gallery />
72
+
73
+ ## Trigger words
74
+
75
+ You should use `btmnwiro` to trigger the image generation.
76
+
77
+ ## Civitai model link: [civitai](https://civitai.com/models/1219717/batman-animated-flux-lora)
78
+
79
+ ```py
80
+ from diffusers import FluxPipeline
81
+ import torch
82
+
83
+ pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
84
+ pipeline.load_lora_weights('WiroAI/Batman-Animated-Flux-LoRA', weight_name='batman_flux_lora.safetensors')
85
+ image = pipeline('btmnwiro, Batman stands on a rooftop at night, his cape flowing in the wind as he watches over Gotham City. The Bat-Signal shines brightly in the cloudy sky, casting a dramatic glow. The scene is dark and moody, with a cinematic noir atmosphere, inspired by classic animated series.').images[0]
86
+ image.save("output.png")
87
+ ```