Instructions to use alvdansen/soft-and-squishy-linework with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use alvdansen/soft-and-squishy-linework with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("alvdansen/soft-and-squishy-linework") prompt = "a little faun boy with horns and curly hair, spots on his face, wearing an oversized t shirt" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -42,7 +42,7 @@ license: cc-by-nc-4.0
|
|
| 42 |
|
| 43 |
A really fun model to prompt with no trigger, intended for anime style soft and sort of lofi linework.
|
| 44 |
|
| 45 |
-
I like running it at 0.9 but it works at other weights as well.
|
| 46 |
|
| 47 |
Sometimes I will use 'messy' and 'bad linework' for a small neg. prompt.
|
| 48 |
|
|
|
|
| 42 |
|
| 43 |
A really fun model to prompt with no trigger, intended for anime style soft and sort of lofi linework.
|
| 44 |
|
| 45 |
+
I like running it at 0.9 but it works at other weights as well. Better with Euler A in my opinion.
|
| 46 |
|
| 47 |
Sometimes I will use 'messy' and 'bad linework' for a small neg. prompt.
|
| 48 |
|