https://github.com/jhuangBU/gsdeformer-code
Tip revision: 2eb7f6d3bf60cacd4f3969a9d68949cb3a34da95 authored by jhuangBU on 10 May 2026, 11:43:06 UTC
doc: revise README
doc: revise README
Tip revision: 2eb7f6d
train_gsdeformer_exp_quant.sh
#!/bin/bash
set -e
train_quant() {
local scene_name="$1"
cd gs3d
python train.py \
-s "../data/quantitative/${scene_name}/${scene_name}" \
-m "output/${scene_name}" \
--white_background \
--test_iterations 999999 \
--save_iterations 999999 \
--port 7070
cd ..
}
for scene_name in quant_ficus quant_mic quant_hotdog quant_lego_90 quant_lego_135 quant_lego_180; do
train_quant $scene_name
done