Text-to-Image
Diffusers
lora
ernie
image-generation
anime
illustration
flat-style
vector-art
cel-shading
stylization
character-design
Instructions to use HexDuck/FMIX with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use HexDuck/FMIX with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("baidu/ERNIE-Image", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("HexDuck/FMIX") prompt = "Fimix:, a highly energetic magical girl with twirling pink pigtails, shouting happily while swinging a glowing star-topped wand, wearing a frilly cosmic-themed dress with floating ribbons, casting a massive bright neon spell that materializes the word \"FMix\" in glowing solid magical energy, a vibrant abstract dimension of shooting stars and geometric auroras, dynamic low angle shot, intensely bright magical rim lighting casting sharp cell-shaded shadows, explosive and magical atmosphere, premium flat style aesthetic, flat colors background, vector art style background, cell shading" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,25 +1,53 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
-
- baidu/ERNIE-Image
|
|
|
|
| 4 |
pipeline_tag: text-to-image
|
|
|
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
-
-
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
widget:
|
| 11 |
-
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
---
|
| 24 |
# 🌌 FMix (Flat Style Mix)
|
| 25 |
|
|
|
|
| 1 |
---
|
| 2 |
+
license: other
|
| 3 |
+
|
| 4 |
base_model:
|
| 5 |
+
- baidu/ERNIE-Image
|
| 6 |
+
|
| 7 |
pipeline_tag: text-to-image
|
| 8 |
+
|
| 9 |
+
library_name: diffusers
|
| 10 |
+
|
| 11 |
tags:
|
| 12 |
+
- lora
|
| 13 |
+
- ernie
|
| 14 |
+
- text-to-image
|
| 15 |
+
- image-generation
|
| 16 |
+
- anime
|
| 17 |
+
- illustration
|
| 18 |
+
- flat-style
|
| 19 |
+
- vector-art
|
| 20 |
+
- cel-shading
|
| 21 |
+
- stylization
|
| 22 |
+
- character-design
|
| 23 |
+
|
| 24 |
+
model_type: lora
|
| 25 |
+
|
| 26 |
+
trigger_words:
|
| 27 |
+
- Fimix:
|
| 28 |
+
|
| 29 |
widget:
|
| 30 |
+
- text: >-
|
| 31 |
+
Fimix:, a highly energetic magical girl with twirling pink pigtails, shouting happily while swinging a glowing star-topped wand, wearing a frilly cosmic-themed dress with floating ribbons, casting a massive bright neon spell that materializes the word "FMix" in glowing solid magical energy, a vibrant abstract dimension of shooting stars and geometric auroras, dynamic low angle shot, intensely bright magical rim lighting casting sharp cell-shaded shadows, explosive and magical atmosphere, premium flat style aesthetic, flat colors background, vector art style background, cell shading
|
| 32 |
+
output:
|
| 33 |
+
url: Examples/01.png
|
| 34 |
+
|
| 35 |
+
- text: >-
|
| 36 |
+
Fimix:, a woman with voluminous auburn curls and copper-colored eyes, wearing a brown leather corset with brass gears and buckles over a white ruffled blouse, mechanical brass goggles resting on her forehead, holding a steaming copper pipe, background of a Victorian clockwork city with airships, sepia-toned anime style, high detail on metal reflections and leather grain, flat colors background, vector art style background, cell shading
|
| 37 |
+
output:
|
| 38 |
+
url: Examples/02.png
|
| 39 |
+
|
| 40 |
+
- text: >-
|
| 41 |
+
Fimix:, space explorer with short silver hair, a smudge of dirt on her cheek, gazing upwards in absolute awe, wearing a sleek white and orange spacesuit, scratched helmet visor reflecting a massive galaxy, standing on a barren alien landscape covered in jagged obsidian rocks, low angle wide establishing shot, flat colors background, vector art style background, cell shading
|
| 42 |
+
output:
|
| 43 |
+
url: Examples/03.png
|
| 44 |
+
|
| 45 |
+
inference:
|
| 46 |
+
parameters:
|
| 47 |
+
guidance_scale: 4.0
|
| 48 |
+
num_inference_steps: 50
|
| 49 |
+
width: 1024
|
| 50 |
+
height: 1024
|
| 51 |
---
|
| 52 |
# 🌌 FMix (Flat Style Mix)
|
| 53 |
|