Instructions to use lilylilith/AnyPose with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lilylilith/AnyPose with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Qwen/Qwen-Image-Edit-2511", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("lilylilith/AnyPose") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
Update README.md
Browse files
README.md
CHANGED
|
@@ -25,7 +25,7 @@ library_name: diffusers
|
|
| 25 |
|
| 26 |
# Introduction
|
| 27 |
|
| 28 |
-
Creating poses for
|
| 29 |
|
| 30 |
Well, this is what the AnyPose LoRAs attempt to do. Made in mind with the new [Qwen Image Edit 2511 lightning LoRA](https://huggingface.co/lightx2v/Qwen-Image-Edit-2511-Lightning) for fast inference, with just a single reference image as a pose guide, you can pilot any image to follow that pose. No control net needed.
|
| 31 |
|
|
|
|
| 25 |
|
| 26 |
# Introduction
|
| 27 |
|
| 28 |
+
Creating poses for [Qwen Image Edit (2511)](https://huggingface.co/Qwen/Qwen-Image-Edit-2511) or its variants can be difficult. Even with openpose being baked into the model, it can still look like something is off with the result, such as the depth being incorrect or the pose not fully matching the character, with distortions that you wouldn't expect. Additionally, creating them by hand can take a bit too long, especially if you are going the blender openpose rig route. What if instead you could just skip openpose entirely and write a simple (but albeit lengthy) prompt to copy the pose of any image on your computer?
|
| 29 |
|
| 30 |
Well, this is what the AnyPose LoRAs attempt to do. Made in mind with the new [Qwen Image Edit 2511 lightning LoRA](https://huggingface.co/lightx2v/Qwen-Image-Edit-2511-Lightning) for fast inference, with just a single reference image as a pose guide, you can pilot any image to follow that pose. No control net needed.
|
| 31 |
|