DiffSplat: Repurposing Image Diffusion Models for Scalable Gaussian Splat Generation
Paper • 2501.16764 • Published • 22
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("chenguolin/DiffSplat", dtype=torch.bfloat16, device_map="cuda")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]This HuggingFace🤗 repo stores all pretrained model weights for the ICLR 2025 paper: "DiffSplat: Repurposing Image Diffusion Models for Scalable Gaussian Splat Generation".
For more details about usage, please refer to the official GitHub repo.
Base model
PixArt-alpha/PixArt-Sigma-XL-2-512-MS