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.
Encode a PLY file:
python Coder.py -ply output/base/Nerf_Synthetic/hotdog/point_cloud/point_cloud_30000.quantized.ply -encodeDecode a binary (gsbin) file:
python Coder.py -bin output/base/Nerf_Synthetic/hotdog/gsbinVisualize and Evaluate a binary (gsbin) file:
python Coder.py -bin output/base/Nerf_Synthetic/hotdog/gsbin -show -eval
- Downloads last month
- 6