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
Create model_index.json
Browse files- model_index.json +8 -0
model_index.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "StableDiffusionXLLoraLoaderPipeline",
|
| 3 |
+
"_diffusers_version": "0.29.2",
|
| 4 |
+
"base_model": "SG161222/RealVisXL_V5.0",
|
| 5 |
+
"pipeline_type": "StableDiffusionXLImg2ImgPipeline",
|
| 6 |
+
"model_type": "sdxl",
|
| 7 |
+
"lora_alpha": 1.0
|
| 8 |
+
}
|