Other
Diffusers
Safetensors
3d-scene-generation
latent-diffusion
autonomous-driving
kitti-360
primitives
cvpr-2026
Instructions to use raniatze/pritti-checkpoints with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use raniatze/pritti-checkpoints with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("raniatze/pritti-checkpoints", 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
Improve model card metadata and content
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,29 +1,32 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
| 3 |
tags:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
library_name: pytorch
|
| 11 |
---
|
| 12 |
|
| 13 |
# PrITTI: Primitive-based Generation of Controllable and Editable 3D Semantic Urban Scenes
|
| 14 |
|
| 15 |
<p align="center">
|
| 16 |
-
<a href="https://
|
| 17 |
<a href="https://raniatze.github.io/pritti/">π Project Page</a> |
|
| 18 |
<a href="https://github.com/autonomousvision/pritti">π» Code</a>
|
| 19 |
</p>
|
| 20 |
|
| 21 |
<p align="center">
|
| 22 |
-
<img src="teaser.png" alt="PrITTI teaser" width="95%">
|
| 23 |
</p>
|
| 24 |
|
| 25 |
This repository hosts the **pre-trained checkpoints** for **PrITTI** (CVPR 2026), a latent-diffusion framework for controllable and editable 3D semantic urban scene generation.
|
| 26 |
|
|
|
|
|
|
|
| 27 |
## Released Checkpoints
|
| 28 |
|
| 29 |
The checkpoints below were trained on [KITTI-360](https://www.cvlibs.net/datasets/kitti-360/).
|
|
@@ -73,4 +76,4 @@ If you find PrITTI useful, please cite:
|
|
| 73 |
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 74 |
year = {2026},
|
| 75 |
}
|
| 76 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: diffusers
|
| 3 |
license: cc-by-nc-4.0
|
| 4 |
+
pipeline_tag: other
|
| 5 |
tags:
|
| 6 |
+
- 3d-scene-generation
|
| 7 |
+
- latent-diffusion
|
| 8 |
+
- autonomous-driving
|
| 9 |
+
- kitti-360
|
| 10 |
+
- primitives
|
| 11 |
+
- cvpr-2026
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# PrITTI: Primitive-based Generation of Controllable and Editable 3D Semantic Urban Scenes
|
| 15 |
|
| 16 |
<p align="center">
|
| 17 |
+
<a href="https://huggingface.co/papers/2506.19117">π Paper</a> |
|
| 18 |
<a href="https://raniatze.github.io/pritti/">π Project Page</a> |
|
| 19 |
<a href="https://github.com/autonomousvision/pritti">π» Code</a>
|
| 20 |
</p>
|
| 21 |
|
| 22 |
<p align="center">
|
| 23 |
+
<img src="https://huggingface.co/raniatze/pritti-checkpoints/resolve/main/teaser.png" alt="PrITTI teaser" width="95%">
|
| 24 |
</p>
|
| 25 |
|
| 26 |
This repository hosts the **pre-trained checkpoints** for **PrITTI** (CVPR 2026), a latent-diffusion framework for controllable and editable 3D semantic urban scene generation.
|
| 27 |
|
| 28 |
+
Existing approaches to 3D semantic urban scene generation predominantly rely on voxel-based representations. In contrast, PrITTI advocates for a primitive-based paradigm where urban scenes are represented using compact, semantically meaningful 3D elements that are easy to manipulate and compose. PrITTI achieves state-of-the-art 3D scene generation quality with lower memory requirements and faster inference than voxel-based methods.
|
| 29 |
+
|
| 30 |
## Released Checkpoints
|
| 31 |
|
| 32 |
The checkpoints below were trained on [KITTI-360](https://www.cvlibs.net/datasets/kitti-360/).
|
|
|
|
| 76 |
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 77 |
year = {2026},
|
| 78 |
}
|
| 79 |
+
```
|