Instructions to use nvidia/difix with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nvidia/difix with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("nvidia/difix", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,6 +8,7 @@ language:
|
|
| 8 |
CVPR 2025 (Oral)
|
| 9 |
[**Code**](https://github.com/nv-tlabs/Difix3D) | [**Project Page**](https://research.nvidia.com/labs/toronto-ai/difix3d/) | [**Paper**](https://arxiv.org/abs/2503.01774)
|
| 10 |
|
|
|
|
| 11 |
## Use the Difix Model
|
| 12 |
Please visit the [Difix3D repository](https://github.com/nv-tlabs/Difix3D) to access all relevant files and code needed to use Difix
|
| 13 |
|
|
|
|
| 8 |
CVPR 2025 (Oral)
|
| 9 |
[**Code**](https://github.com/nv-tlabs/Difix3D) | [**Project Page**](https://research.nvidia.com/labs/toronto-ai/difix3d/) | [**Paper**](https://arxiv.org/abs/2503.01774)
|
| 10 |
|
| 11 |
+
## 📣📣 The commercially available model (Fixer) is now released [here](https://huggingface.co/nvidia/Fixer) 📣📣
|
| 12 |
## Use the Difix Model
|
| 13 |
Please visit the [Difix3D repository](https://github.com/nv-tlabs/Difix3D) to access all relevant files and code needed to use Difix
|
| 14 |
|