Instructions to use PromptWaffle/FruityKicks with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use PromptWaffle/FruityKicks with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Turbo", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("PromptWaffle/FruityKicks") prompt = "six-winged robotic seraph made from ivory ceramic and brushed gold, complex mechanical feathers, central glowing eye, symmetrical hovering composition, scifi cel shading,saint.soft warm palette,religious iconography,color accents,clean background" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
5fe78fb
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +55 -0
- README.md +83 -0
.gitattributes
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
# Audio files - uncompressed
|
| 38 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
# Audio files - compressed
|
| 42 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
# Image files - uncompressed
|
| 48 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
# Image files - compressed
|
| 53 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- lora
|
| 5 |
+
- diffusers
|
| 6 |
+
- template:diffusion-lora
|
| 7 |
+
widget:
|
| 8 |
+
- output:
|
| 9 |
+
url: images/af2264c1-83ab-4431-b5d6-24c9d731308c.png
|
| 10 |
+
text: >-
|
| 11 |
+
six-winged robotic seraph made from ivory ceramic and brushed gold, complex
|
| 12 |
+
mechanical feathers, central glowing eye, symmetrical hovering composition,
|
| 13 |
+
scifi cel shading,saint.soft warm palette,religious iconography,color
|
| 14 |
+
accents,clean background
|
| 15 |
+
- output:
|
| 16 |
+
url: images/8aec8624-6f15-42ef-9f32-bea913bc572b.png
|
| 17 |
+
text: >-
|
| 18 |
+
extreme close-up of eye with entire scene reflected, scifi punk rock
|
| 19 |
+
watercolor, world in iris, macro detail, single point containing everything,
|
| 20 |
+
precise wash
|
| 21 |
+
- output:
|
| 22 |
+
url: images/e6e5a250-587b-46e7-905c-a82e185c8821.png
|
| 23 |
+
text: >-
|
| 24 |
+
blizzard whiteout with only signal flares visible, scifi punk rock
|
| 25 |
+
watercolor, red flare against white void, buried vehicle, survival
|
| 26 |
+
situation, stark white with red accent wash
|
| 27 |
+
- output:
|
| 28 |
+
url: images/b46f1df3-f290-4d87-ab5e-d3281fb66302.png
|
| 29 |
+
text: >-
|
| 30 |
+
submarine emerging from bioluminescent deep ocean, scifi punk rock
|
| 31 |
+
watercolor, barnacles and battle scars, pressure lights on, deep blue and
|
| 32 |
+
green wash
|
| 33 |
+
base_model: krea/Krea-2-Turbo
|
| 34 |
+
instance_prompt: fru1tyk1ck
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
# FruityKicks_Krea2_V1.0
|
| 38 |
+
|
| 39 |
+
<Gallery />
|
| 40 |
+
|
| 41 |
+
## Model description
|
| 42 |
+
|
| 43 |
+
FruityKicks
|
| 44 |
+
|
| 45 |
+
A style LoRA built around the fusion of bright candy-color palettes, chunky sci-fi machinery, stylized fantasy creatures, and clean cel-shaded illustration. It creates bold, highly detailed images filled with playful mechanical designs, colorful armor, painterly textures, expressive characters, strange vehicles, whimsical weapons, and vibrant worldbuilding with a fun but polished edge.
|
| 46 |
+
|
| 47 |
+
The style leans on a lively palette of pink, cyan, lavender, cream, coral, teal, gold, and soft pastel accents. Crisp linework, controlled cel shading, graphic shapes, and layered mechanical detail give the images a look that feels energetic, imaginative, and slightly toy-like while still being rich and illustrative.
|
| 48 |
+
|
| 49 |
+
Trigger keyword: fru1tyk1cks
|
| 50 |
+
|
| 51 |
+
Works especially well for:
|
| 52 |
+
|
| 53 |
+
Colorful sci-fi characters and stylized adventurers
|
| 54 |
+
|
| 55 |
+
Mechs, robots, androids, and mechanical creatures
|
| 56 |
+
|
| 57 |
+
Futuristic weapons, gadget props, and oversized gear
|
| 58 |
+
|
| 59 |
+
Spaceships, bikes, trucks, submarines, and strange vehicles
|
| 60 |
+
|
| 61 |
+
Monster encounters and action-heavy fantasy scenes
|
| 62 |
+
|
| 63 |
+
Creature design with playful but dramatic visual impact
|
| 64 |
+
|
| 65 |
+
Character sheets and clean turnaround-style designs
|
| 66 |
+
|
| 67 |
+
Whimsical environments with strong shape language
|
| 68 |
+
|
| 69 |
+
Close-up detail shots of eyes, gear, and machinery
|
| 70 |
+
|
| 71 |
+
Cute, emotional, or storybook-like scenes with a sci-fi twist
|
| 72 |
+
|
| 73 |
+
The LoRA can produce both high-energy action artwork and calmer character-focused illustrations. The exact balance depends heavily on the prompt. Mention things like colorful armor, candy-coated machinery, mechanical detail, stylized creatures, cel shading, playful vehicles, or vibrant fantasy-scifi worldbuilding when you want the FruityKicks look to come through more strongly.
|
| 74 |
+
|
| 75 |
+
## Trigger words
|
| 76 |
+
|
| 77 |
+
You should use `fru1tyk1ck` to trigger the image generation.
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
## Download model
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
[Download](/PromptWaffle/FruityKicks/tree/main) them in the Files & versions tab.
|