Instructions to use coder119/Vectorartz_Diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use coder119/Vectorartz_Diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("coder119/Vectorartz_Diffusion", 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
Add `scale_factor` to vae config. (#8)
Browse files- Add `scale_factor` to vae config. (d5267667f18f0a41a8e6dd721d9919b0120a46ce)
Co-authored-by: Suraj Patil <valhalla@users.noreply.huggingface.co>
- vae/config.json +1 -0
vae/config.json
CHANGED
|
@@ -20,6 +20,7 @@
|
|
| 20 |
"norm_num_groups": 32,
|
| 21 |
"out_channels": 3,
|
| 22 |
"sample_size": 256,
|
|
|
|
| 23 |
"up_block_types": [
|
| 24 |
"UpDecoderBlock2D",
|
| 25 |
"UpDecoderBlock2D",
|
|
|
|
| 20 |
"norm_num_groups": 32,
|
| 21 |
"out_channels": 3,
|
| 22 |
"sample_size": 256,
|
| 23 |
+
"scaling_factor": 0.18215,
|
| 24 |
"up_block_types": [
|
| 25 |
"UpDecoderBlock2D",
|
| 26 |
"UpDecoderBlock2D",
|