Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Voxel-GS Dataset

This repository contains datasets and resources related to the paper Voxel-GS: Quantized Scaffold Gaussian Splatting Compression with Run-Length Coding.

Voxel-GS proposes a simple yet highly effective framework for compressing substantial Gaussian splatting format point clouds. It achieves competitive performance using a lightweight rate proxy and run-length coding, departing from complex neural entropy models.

Paper: https://huggingface.co/papers/2512.17528 Code: https://github.com/zb12138/VoxelGS

Dataset Structure

The voxelGS/data directory, as described in the associated GitHub repository, contains various 3D scene datasets structured as follows:

voxelGS/data
β”œβ”€β”€ DeepBlending 
    β”œβ”€β”€ drjohnson
    └── playroom
β”œβ”€β”€ MipNerf360 
    β”œβ”€β”€ bicycle
    β”œβ”€β”€ bonsai
    β”œβ”€β”€ counter
    β”œβ”€β”€ flowers
    β”œβ”€β”€ garden
    β”œβ”€β”€ kitchen
    β”œβ”€β”€ room
    β”œβ”€β”€ stump
    └── treehill
β”œβ”€β”€ Nerf_Synthetic 
    β”œβ”€β”€ chair
    β”œβ”€β”€ drums
    β”œβ”€β”€ ficus
    β”œβ”€β”€ hotdog
    β”œβ”€β”€ lego
    β”œβ”€β”€ materials
    β”œβ”€β”€ mic
    └── ship
└── T2T 
    β”œβ”€β”€ train
    └── truck

Sample Usage

The following sections provide instructions for setting up the environment and using the Train.py and Coder.py scripts from the GitHub repository to interact with Voxel-GS.

Environment Setup

To set up the environment with cuda 11.7 and python 3.8:

conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.7 -c pytorch -c nvidia
pip install omegaconf,loguru,open3d==0.19.0,opencv-python,plyfile,tensorboard,termcolor,torch_scatter,jaxtyping,einops,lpips
pip install models/submodules/* # from Scaffold-GS

Training

You can train the model using Train.py. After training, stat_log will generate statistical information and save the results in the output folder.

python Train.py

Alternatively, you can download pre-compressed binary files and decompress them directly:

python Coder.py -bin Results/BIN/DeepBlending/playroom/gsbin -eval

Encoding, Decoding, and Evaluation

The Coder.py script can be used for encoding PLY files, decoding binary files, and for visualization and evaluation.

  1. Encode a PLY file:

    python Coder.py -ply output/base/Nerf_Synthetic/hotdog/point_cloud/point_cloud_30000.quantized.ply -encode
    
  2. Decode a binary (gsbin) file:

    python Coder.py -bin output/base/Nerf_Synthetic/hotdog/gsbin
    
  3. Visualize and Evaluate a binary (gsbin) file:

    python Coder.py -bin output/base/Nerf_Synthetic/hotdog/gsbin -show -eval
    
Downloads last month
6