1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#!/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