GSFix3D
Collection
Diffusion model collections for paper "GSFix3D: Diffusion-Guided Repair of Novel Views in Gaussian Splatting" • 4 items • Updated • 2
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("goldoak1421/gsfixer-full", dtype=torch.bfloat16, device_map="cuda")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]This model card is for the gsfixer-full model, which is designed for novel view repair of an image rendered from a 3DGS model with additional information gain from the mesh. The model is fine-tuned from the stable-diffusion-2 model following Marigold protocol.
@article{wei2026gsfix3d,
title={GSFix3D: Diffusion-Guided Repair of Novel Views in Gaussian Splatting},
author={Wei, Jiaxin and Leutenegger, Stefan and Schaefer, Simon},
booktitle={2026 International Conference on 3D Vision (3DV)},
year={2026},
organization={IEEE}
}