Instructions to use fofr/sdxl-emoji with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use fofr/sdxl-emoji with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("fofr/sdxl-emoji") prompt = "an <s0><s1> emoji" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
#1
by multimodalart HF Staff - opened
README.md
CHANGED
|
@@ -8,7 +8,7 @@ tags:
|
|
| 8 |
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
pivotal_tuning: true
|
| 10 |
textual_embeddings: embeddings.pti
|
| 11 |
-
instance_prompt: <s0><s1>
|
| 12 |
inference: false
|
| 13 |
---
|
| 14 |
# sdxl-emoji LoRA by [fofr](https://replicate.com/fofr)
|
|
|
|
| 8 |
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
pivotal_tuning: true
|
| 10 |
textual_embeddings: embeddings.pti
|
| 11 |
+
instance_prompt: an <s0><s1> emoji
|
| 12 |
inference: false
|
| 13 |
---
|
| 14 |
# sdxl-emoji LoRA by [fofr](https://replicate.com/fofr)
|