Instructions to use NullAxis/karmix-merge-experiments with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use NullAxis/karmix-merge-experiments with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("NullAxis/karmix-merge-experiments", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,8 +5,17 @@ pipeline_tag: text-to-image
|
|
| 5 |
tags:
|
| 6 |
- safetensors
|
| 7 |
- diffusers
|
| 8 |
-
library_name: diffusers
|
| 9 |
base_model:
|
| 10 |
- chemwolf/Karmix-XL-v0
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
- safetensors
|
| 7 |
- diffusers
|
|
|
|
| 8 |
base_model:
|
| 9 |
- chemwolf/Karmix-XL-v0
|
| 10 |
+
library_name: diffusers
|
| 11 |
+
license: other
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
This repository is an offshoot from the main **Karmix-XL v0** (https://huggingface.co/chemwolf/Karmix-XL-v0) model with experimental versions of the model using various methods/parameters for merging.
|
| 15 |
+
|
| 16 |
+
**The models are provided "as is", and due to the experimentation, perfect work is not guaranteed.**
|
| 17 |
+
|
| 18 |
+
These versions **are not** release versions and remain only prototypes that do not reflect the future of the model.
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
Additional information about the existing versions will be added later.
|