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