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 ·
5373874
1
Parent(s): f0884e6
fix encoding
Browse files- handler.py +1 -1
handler.py
CHANGED
|
@@ -36,4 +36,4 @@ class EndpointHandler():
|
|
| 36 |
img_str = base64.b64encode(buffered.getvalue())
|
| 37 |
|
| 38 |
# postprocess the prediction
|
| 39 |
-
return {"image": img_str
|
|
|
|
| 36 |
img_str = base64.b64encode(buffered.getvalue())
|
| 37 |
|
| 38 |
# postprocess the prediction
|
| 39 |
+
return {"image": img_str}
|