-
Notifications
You must be signed in to change notification settings - Fork 1
/
render.sh
65 lines (55 loc) · 1.64 KB
/
render.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
code_path=/data/code/nefii_v0.1/code
data_path=/data/datasets/nefii/ds_physg
save_path=/data/datasets/nefii/Experiments/202307_reproduce
cd $code_path
source /root/anaconda3/etc/profile.d/conda.sh
conda activate nefii
Scene=robot
old_expdir=00_s2_unknow_$Scene
Expname=00_s3_results_$Scene
Timestamp=2023_07_05_11_17_44
Checkpoint=120
Memory_capacity_level=18
python $code_path/scripts/render.py \
--conf $code_path/confs_sg/conf.conf \
--data_split_dir $data_path/$Scene/train/ \
--data_split_dir_test $data_path/$Scene/test/ \
--exps_folder_name $save_path \
--old_expdir $Old_expdir \
--expname $Expname \
--nepoch 2000 \
--max_niter 200001 \
--gamma 1.0 \
--batch_size 1 \
--roughness_warmup 5000 \
--coordinate_type blender \
--secondary_batch_size 1024 \
--secondary_train_interval 10 \
--freeze_geometry \
--memory_capacity_level $Memory_capacity_level \
--is_continue \
--timestamp $Timestamp \
--start_index 0 \
--num_rays 256 \
# python $code_path/scripts/render.py \
# --conf $code_path/confs_sg/conf.conf \
# --data_split_dir $data_path/$Scene/train/ \
# --data_split_dir_test $data_path/$Scene/test/ \
# --exps_folder_name $save_path \
# --old_expdir $Old_expdir \
# --expname $Expname \
# --nepoch 2000 \
# --max_niter 200001 \
# --gamma 1.0 \
# --batch_size 1 \
# --roughness_warmup 5000 \
# --coordinate_type blender \
# --secondary_batch_size 1024 \
# --secondary_train_interval 10 \
# --freeze_geometry \
# --memory_capacity_level $Memory_capacity_level \
# --is_continue \
# --timestamp $Timestamp \
# --checkpoint $Checkpoint \
# --start_index 0 \
# --num_rays 256 \