strkyyy commited on
Commit
c2860fc
·
verified ·
1 Parent(s): b8d8c46

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: openrail++
3
+ language:
4
+ - en
5
+ library_name: diffusers
6
+ pipeline_tag: text-to-image
7
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
8
+ instance_prompt: cyb3rn1me
9
+ tags:
10
+ - lora
11
+ - stable-diffusion-xl
12
+ - text-to-image
13
+ - diffusers
14
+ - style
15
+ - anime
16
+ - cyberpunk
17
+ - neon
18
+ - sci-fi
19
+ - futuristic
20
+ - dark
21
+ - ghost-in-the-shell
22
+ - gritty
23
+ - industrial
24
+ - holographic
25
+ - flux
26
+ - lora
27
+ - style-lora
28
+ - portrait
29
+ widget:
30
+ - text: "cyb3rn1me, a hacker in a neon arcade"
31
+ - text: "cyb3rn1me, a cyborg detective in the rain"
32
+ - text: "cyb3rn1me, a flying car over a neon megacity"
33
+ ---
34
+
35
+ # SDXL LoRA for Dark Futuristic Style: Cyberpunk Anime Aesthetic
36
+
37
+ ## What it does
38
+ This LoRA model applies a dark cyberpunk anime aesthetic to your prompts, inspired by iconic works like Ghost in the Shell and Akira. It adds moody neon-lit megacities, rain-slicked streets, holographic ads, and gritty industrial details with deep shadows and neon accents.
39
+ ## How to use
40
+ To apply this style, include the trigger word 'cyb3rn1me' in your prompt. A suggested strength of 0.85 works well for most scenes, but adjust as needed depending on how dominant you want the cyberpunk elements to be. Use EMA sampler with 25 steps for best results.
41
+ ## Best for
42
+ - Scenes featuring hackers and detectives in neon-lit environments
43
+ - Futuristic megacities with flying cars and towering skyscrapers
44
+ - Cybernetic characters with advanced technology and samurai-inspired aesthetics
45
+ - Rainy alleyways filled with noodle stalls and hidden secrets
46
+ - Industrial settings with a gritty, dystopian feel
47
+ ## Tips
48
+ - Experiment with different strengths to find your preferred level of cyberpunk influence.
49
+ - Combine 'cyb3rn1me' with other style triggers for unique visual blends.
50
+ ## Example Prompts
51
+
52
+ ```
53
+ cyb3rn1me cybernetic catgirl portrait, rainy night neon reflections, moody lighting
54
+ ```
55
+
56
+ ```
57
+ cyb3rn1me futuristic skyline at dawn, rain-slick streets, soft glowing neon signs, architectural details
58
+ ```
59
+
60
+ ```
61
+ cyb3rn1me robotic arm with circuitry exposed, metallic sheen, intricate wiring, sharp focus
62
+ ```
63
+
64
+ ```
65
+ cyb3rn1me biker gang on rainy street, speeding motorcycles, wet asphalt, dramatic shadows and highlights
66
+ ```
67
+
68
+ ```
69
+ cyb3rn1me gloomy alleyway with neon signs, rain drops hitting puddles, dark mood, low angle shot
70
+ ```
71
+
72
+ ```
73
+ cyb3rn1me abstract digital pattern, glitch effect, neon colors, sharp contrast
74
+ ```
75
+
76
+ ## Trigger word
77
+
78
+ Activate with `cyb3rn1me`. Recommended strength: **0.9**.
79
+
80
+ ## Showcase
81
+
82
+ ![showcase 1](./showcase/showcase_01.png)
83
+ ![showcase 2](./showcase/showcase_02.png)
84
+ ![showcase 3](./showcase/showcase_03.png)
85
+ ![showcase 4](./showcase/showcase_04.png)
86
+ ![showcase 5](./showcase/showcase_05.png)
87
+ ![showcase 6](./showcase/showcase_06.png)
88
+ ![showcase 7](./showcase/showcase_07.png)
89
+ ![showcase 8](./showcase/showcase_08.png)
90
+
91
+ ## Usage with `diffusers`
92
+
93
+ ```python
94
+ from diffusers import AutoPipelineForText2Image
95
+ import torch
96
+
97
+ pipe = AutoPipelineForText2Image.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16).to("cuda")
98
+ pipe.load_lora_weights("strkyyy/anime-cyberpunk")
99
+ image = pipe("cyb3rn1me, your prompt", num_inference_steps=30).images[0]
100
+ ```