Instructions to use LyliaEngine/Kenva with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use LyliaEngine/Kenva with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("LyliaEngine/Kenva", dtype=torch.bfloat16, device_map="cuda") prompt = "None" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
#1
by LyliaEngine - opened
README.md
CHANGED
|
@@ -3,4 +3,9 @@ license: cc-by-nc-4.0
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
pipeline_tag: text-to-image
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
pipeline_tag: text-to-image
|
| 6 |
+
datasets:
|
| 7 |
+
- HuggingFaceFW/fineweb
|
| 8 |
+
metrics:
|
| 9 |
+
- character
|
| 10 |
+
library_name: diffusers
|
| 11 |
---
|