Instructions to use mrcuddle/live2d-model-maker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mrcuddle/live2d-model-maker with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("mrcuddle/live2d-model-maker") prompt = "live2d,guijiaoxiansheng,separate hand,separate feet,separate head,full body,solo,white background,simple background, male, white hair, fox, CharacterDesignFLUX, reference sheet,white background,simple background,multiple views, upper body, front, from side, color palette reference, high_detailed, captured in high detail, magic particles, multiple references" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -55,7 +55,9 @@ instance_prompt: >-
|
|
| 55 |
|
| 56 |
Re-upload from
|
| 57 |
https://civitai.com/models/712299/fluxlive2d-virtual-avatar-quick-creation-live2d-vroid
|
| 58 |
-
|
|
|
|
|
|
|
| 59 |
## Trigger words
|
| 60 |
|
| 61 |
You should use `live2d` to trigger the image generation.
|
|
|
|
| 55 |
|
| 56 |
Re-upload from
|
| 57 |
https://civitai.com/models/712299/fluxlive2d-virtual-avatar-quick-creation-live2d-vroid
|
| 58 |
+
|
| 59 |
+
## NOTICE!!!
|
| 60 |
+
Required all trigger words below in prompt or else it wont work!!!!
|
| 61 |
## Trigger words
|
| 62 |
|
| 63 |
You should use `live2d` to trigger the image generation.
|