Instructions to use KawaiiApp/anythinv3-vae-handler with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use KawaiiApp/anythinv3-vae-handler with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("KawaiiApp/anythinv3-vae-handler", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update model_index.json
#2
by anayzehri - opened
- model_index.json +2 -2
model_index.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"_class_name": "StableDiffusionPipeline",
|
| 3 |
"_diffusers_version": "0.12.0.dev0",
|
| 4 |
"feature_extractor": [
|
|
@@ -11,8 +12,7 @@
|
|
| 11 |
"StableDiffusionSafetyChecker"
|
| 12 |
],
|
| 13 |
"scheduler": [
|
| 14 |
-
"diffusers"
|
| 15 |
-
"PNDMScheduler"
|
| 16 |
],
|
| 17 |
"text_encoder": [
|
| 18 |
"transformers",
|
|
|
|
| 1 |
{
|
| 2 |
+
{
|
| 3 |
"_class_name": "StableDiffusionPipeline",
|
| 4 |
"_diffusers_version": "0.12.0.dev0",
|
| 5 |
"feature_extractor": [
|
|
|
|
| 12 |
"StableDiffusionSafetyChecker"
|
| 13 |
],
|
| 14 |
"scheduler": [
|
| 15 |
+
"diffusers.scheduler.PrioritizedScheduler"
|
|
|
|
| 16 |
],
|
| 17 |
"text_encoder": [
|
| 18 |
"transformers",
|