Instructions to use simulationcartridge/ppl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use simulationcartridge/ppl with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("simulationcartridge/ppl") prompt = "8bit avatar" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Mirza Učanbarlić commited on
Commit ·
f0884e6
1
Parent(s): dcdeaa3
update handler
Browse files- handler.py +1 -1
handler.py
CHANGED
|
@@ -22,7 +22,7 @@ class EndpointHandler():
|
|
| 22 |
Return:
|
| 23 |
A :obj:`list` | `dict`: will be serialized and returned
|
| 24 |
"""
|
| 25 |
-
|
| 26 |
prompt = data.pop("prompt", None)
|
| 27 |
|
| 28 |
# run normal prediction
|
|
|
|
| 22 |
Return:
|
| 23 |
A :obj:`list` | `dict`: will be serialized and returned
|
| 24 |
"""
|
| 25 |
+
input_image= data.pop("input_image", data)
|
| 26 |
prompt = data.pop("prompt", None)
|
| 27 |
|
| 28 |
# run normal prediction
|