Instructions to use yhx12/DiffThinker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use yhx12/DiffThinker 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("yhx12/DiffThinker", dtype=torch.bfloat16, device_map="cuda") 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] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,8 +4,6 @@ language:
|
|
| 4 |
- en
|
| 5 |
base_model:
|
| 6 |
- Qwen/Qwen-Image-Edit-2509
|
| 7 |
-
tags:
|
| 8 |
-
- arxiv:2512.24165
|
| 9 |
---
|
| 10 |
# DiffThinker: Towards Generative Multimodal Reasoning with Diffusion Models
|
| 11 |
<a href="https://diffthinker-project.github.io/"><img src="https://img.shields.io/badge/%F0%9F%8C%90%20Project-Page-2563eb" alt="Project Page"></a>
|
|
|
|
| 4 |
- en
|
| 5 |
base_model:
|
| 6 |
- Qwen/Qwen-Image-Edit-2509
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
# DiffThinker: Towards Generative Multimodal Reasoning with Diffusion Models
|
| 9 |
<a href="https://diffthinker-project.github.io/"><img src="https://img.shields.io/badge/%F0%9F%8C%90%20Project-Page-2563eb" alt="Project Page"></a>
|