Instructions to use Elfyly/AlyxGenesis_models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Elfyly/AlyxGenesis_models with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("SG161222/RealVisXL_V5.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Elfyly/AlyxGenesis_models") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
Update README.md
#1
by Elfyly - opened
README.md
CHANGED
|
@@ -3,5 +3,11 @@ language:
|
|
| 3 |
- fr
|
| 4 |
base_model:
|
| 5 |
- SG161222/RealVisXL_V5.0
|
| 6 |
-
license:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
|
|
|
| 3 |
- fr
|
| 4 |
base_model:
|
| 5 |
- SG161222/RealVisXL_V5.0
|
| 6 |
+
license: creativeml-openrail-m
|
| 7 |
+
tags:
|
| 8 |
+
- AlyxGenesis
|
| 9 |
+
- sdxl
|
| 10 |
+
- lora
|
| 11 |
+
- realvisxl
|
| 12 |
+
library_name: diffusers
|
| 13 |
---
|