Instructions to use pruna-test/test-save-tiny-stable-diffusion-pipe-smashed-pro with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use pruna-test/test-save-tiny-stable-diffusion-pipe-smashed-pro with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("pruna-test/test-save-tiny-stable-diffusion-pipe-smashed-pro", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Pruna AI
How to use pruna-test/test-save-tiny-stable-diffusion-pipe-smashed-pro with Pruna AI:
from pruna_pro import PrunaProModel pip install -U diffusers transformers accelerate
from pruna_pro import PrunaProModel import torch # switch to "mps" for apple devices pipe = PrunaProModel.from_pretrained("pruna_pro-test/test-save-tiny-stable-diffusion-pipe-smashed-pro", 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 Settings
- Draw Things
- DiffusionBee
Add files using upload-large-folder tool
Browse files- README.md +1 -0
- smash_config.json +1 -0
README.md
CHANGED
|
@@ -93,6 +93,7 @@ The compression configuration of the model is stored in the `smash_config.json`
|
|
| 93 |
"text_to_text_inplace_perp": false,
|
| 94 |
"text_to_text_lora": false,
|
| 95 |
"text_to_text_perp": false,
|
|
|
|
| 96 |
"token_merging": false,
|
| 97 |
"torch_compile": false,
|
| 98 |
"torch_dynamic": false,
|
|
|
|
| 93 |
"text_to_text_inplace_perp": false,
|
| 94 |
"text_to_text_lora": false,
|
| 95 |
"text_to_text_perp": false,
|
| 96 |
+
"time_aware_fp8_diffusers": false,
|
| 97 |
"token_merging": false,
|
| 98 |
"torch_compile": false,
|
| 99 |
"torch_dynamic": false,
|
smash_config.json
CHANGED
|
@@ -51,6 +51,7 @@
|
|
| 51 |
"text_to_text_inplace_perp": false,
|
| 52 |
"text_to_text_lora": false,
|
| 53 |
"text_to_text_perp": false,
|
|
|
|
| 54 |
"token_merging": false,
|
| 55 |
"torch_compile": false,
|
| 56 |
"torch_dynamic": false,
|
|
|
|
| 51 |
"text_to_text_inplace_perp": false,
|
| 52 |
"text_to_text_lora": false,
|
| 53 |
"text_to_text_perp": false,
|
| 54 |
+
"time_aware_fp8_diffusers": false,
|
| 55 |
"token_merging": false,
|
| 56 |
"torch_compile": false,
|
| 57 |
"torch_dynamic": false,
|