-
Notifications
You must be signed in to change notification settings - Fork 13
Description
I want to request further clarification on the configuration details required to reproduce the results from your paper, particularly regarding the number of Gaussians. Despite following the implementation details described in your paper, I have observed a significant difference between my results and those reported in your Appendix.
Here is the configuration I used:
ncls=32768
ncls_sh=4096
ncls_dc=4096
kmeans_iters=1
st_iter=20000
max_iters=30000
max_prune_iter=20000
lambda_reg=1e-7For the bicycle scene in the MipNeRF360 dataset, I used the following command to train the model:
CUDA_VISIBLE_DEVICES=$cuda_device python train_kmeans.py \
--port $port \
-s="$path_source" \
-m="$path_output" \
-i images_4 \
--kmeans_ncls "$ncls" \
--kmeans_ncls_sh "$ncls_sh" \
--kmeans_ncls_dc "$ncls_dc" \
--kmeans_st_iter "$st_iter" \
--kmeans_iters "$kmeans_iters" \
--total_iterations "$max_iters" \
--quant_params sh dc rot scale\
--kmeans_freq 100 \
--opacity_reg \
--lambda_reg "$lambda_reg" \
--max_prune_iter "$max_prune_iter" \
--evalAfter evaluation and metric calculation, I obtained the following results:
| Scene | Method | SSIM↑ | PSNR↑ | LPIPS↓ | # Gauss |
|---|---|---|---|---|---|
| Bicycle | 3DGS | 0.766 | 25.21 | 0.209 | 4876273 |
| Bicycle | CompGS-32K | 0.762 | 25.18 | 0.227 | 2617054 |
| Bonsai | 3DGS | 0.942 | 32.33 | 0.203 | 1075069 |
| Bonsai | CompGS-32K | 0.937 | 31.64 | 0.215 | 615497 |
However, the results in your paper show:
I noticed that the original 3DGS repository has been updated, but I believe there might still be some discrepancies in the configuration or implementation that could account for such a large difference in the number of Gaussians. Could you please provide more detailed configuration settings or any additional steps that might help me reproduce the results more accurately? I would greatly appreciate your guidance on this matter.
Thank you for your attention to this issue. I look forward to your response.
Best regards.
