Instructions to use monsterapi/sdxl_finetuning_anime with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use monsterapi/sdxl_finetuning_anime with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("monsterapi/sdxl_finetuning_anime", dtype=torch.bfloat16, device_map="cuda") prompt = "neon punk with anime style cartoon" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,6 +18,8 @@ Finetuning Documentation: [Fine-tune an SDXL Model](https://developer.monsterapi
|
|
| 18 |
|
| 19 |
### Deploy Your Model: One-Click deploy your Finetuned SDXL model using MonsterAPI.
|
| 20 |
|
|
|
|
|
|
|
| 21 |
Deployment Documentation: [Deploy Finetuned SDXL Model](https://developer.monsterapi.ai/docs/deploy-finetuned-sdxl-model)
|
| 22 |
|
| 23 |
***training prompt***: `neon punk with anime style cartoon`
|
|
|
|
| 18 |
|
| 19 |
### Deploy Your Model: One-Click deploy your Finetuned SDXL model using MonsterAPI.
|
| 20 |
|
| 21 |
+
**Finetune Stable Diffusion on your own images - [Complete Guide](https://blog.monsterapi.ai/finetune-sdxl/)**
|
| 22 |
+
|
| 23 |
Deployment Documentation: [Deploy Finetuned SDXL Model](https://developer.monsterapi.ai/docs/deploy-finetuned-sdxl-model)
|
| 24 |
|
| 25 |
***training prompt***: `neon punk with anime style cartoon`
|