Instructions to use lrzjason/Anything2Real with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lrzjason/Anything2Real 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", torch_dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("lrzjason/Anything2Real") 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
|
@@ -20,9 +20,12 @@ pipeline_tag: image-to-image
|
|
| 20 |
|
| 21 |
Hey Stable Diffusion community! 👋
|
| 22 |
|
| 23 |
-
I'm excited to share the new version of
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
**🔗 Civitai:** https://civitai.com/models/2121900/qwen-edit-2511-anything2real-2601
|
| 28 |
|
|
|
|
| 20 |
|
| 21 |
Hey Stable Diffusion community! 👋
|
| 22 |
|
| 23 |
+
I'm excited to share the new version of Anything2Real family, Anything2Real 2601 A.
|
| 24 |
+
Anything2Real 2601 A is an adjusted version based on Anything2Real 2601 and remixed the layer weight of anything2real alpha.
|
| 25 |
+
Anything2Real 2601 is kinda weak of eyes transformation and anything2real alpha is quite good at light and shadow but weak at color.
|
| 26 |
+
Anything2Real 2601 A is a more balanced version between "respect to original" and "realistic environemnt"
|
| 27 |
|
| 28 |
+
**Alpha Dataset**: [lrzjason/Anything2Real_demo_dataset](https://huggingface.co/datasets/lrzjason/Anything2Real_demo_dataset)
|
| 29 |
|
| 30 |
**🔗 Civitai:** https://civitai.com/models/2121900/qwen-edit-2511-anything2real-2601
|
| 31 |
|