Instructions to use DeverStyle/Krea-2-Premium-Loras with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use DeverStyle/Krea-2-Premium-Loras with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Raw", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("DeverStyle/Krea-2-Premium-Loras") prompt = "Style transfer samples" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -37,6 +37,7 @@ Dever's Krea 2 Turbo Premium Style LORAs that were not trained in under 2 minute
|
|
| 37 |
|
| 38 |
#### Style Transfer RC1 (experimental)
|
| 39 |
|
|
|
|
| 40 |
Use `KSTRANSFER` as the trigger. [See the workflow example from here](https://huggingface.co/DeverStyle/Krea-2-Premium-Loras/tree/main/workflows)
|
| 41 |
Uses [Krea2 edit nodes from Ostris](https://github.com/ostris/ComfyUI-Krea2-Ostris-Edit)
|
| 42 |
|
|
|
|
| 37 |
|
| 38 |
#### Style Transfer RC1 (experimental)
|
| 39 |
|
| 40 |
+
It was trained to keep the composition of the first reference image and apply the style of the second reference.
|
| 41 |
Use `KSTRANSFER` as the trigger. [See the workflow example from here](https://huggingface.co/DeverStyle/Krea-2-Premium-Loras/tree/main/workflows)
|
| 42 |
Uses [Krea2 edit nodes from Ostris](https://github.com/ostris/ComfyUI-Krea2-Ostris-Edit)
|
| 43 |
|