-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
DATAROOT=${1:-'/svl/u/redfairy/datasets/room-real/chairs/test-2-4obj'} | ||
PORT=${2:-12783} | ||
python -m visdom.server -p $PORT &>/dev/null & | ||
python test.py --dataroot $DATAROOT --n_scenes 100 --n_img_each_scene 4 \ | ||
--checkpoints_dir 'checkpoints' --name 'room-furniture' \ | ||
--display_port $PORT --display_ncols 4 \ | ||
--load_size 128 --n_samp 256 --input_size 128 --render_size 32 --frustum_size 128 \ | ||
--model 'uocf_eval' \ | ||
--num_slots 5 --attn_iter 6 --nss_scale 7 --fg_object_size 3 \ | ||
--fixed_locality \ | ||
--attn_momentum 0.5 \ | ||
--exp_id 'stage2-multiobj-plane' --epoch 120 \ | ||
--vis_attn --vis_mask --remove_duplicate \ | ||
--testset_name 'standard' \ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
DATAROOT=${1:-'/svl/u/redfairy/datasets/room-real/chairs/train-2-4obj'} | ||
PORT=${2:-12783} | ||
python -m visdom.server -p $PORT &>/dev/null & | ||
python train.py --dataroot $DATAROOT --n_scenes 5000 --n_img_each_scene 2 \ | ||
--checkpoints_dir 'checkpoints' --name 'room-furniture' \ | ||
--display_port $PORT --display_ncols 4 --print_freq 50 --display_freq 50 --save_epoch_freq 5 \ | ||
--load_size 128 --n_samp 64 --input_size 128 --supervision_size 64 --frustum_size 64 \ | ||
--model 'uocf' --lr 0.0003 \ | ||
--seed 2024 \ | ||
--num_slots 5 --attn_iter 6 --nss_scale 7 --fg_object_size 3 \ | ||
--stratified --fixed_locality \ | ||
--bg_density_loss --depth_supervision --remove_duplicate \ | ||
--load_pretrain --load_pretrain_path './checkpoints/room-texture/stage1-1obj-plane' \ | ||
--load_encoder 'load_train' --load_slotattention 'load_train' --load_decoder 'load_train' --load_epoch 100 --one2four \ | ||
--coarse_epoch 60 --niter 120 --percept_in 10 --no_locality_epoch 20 --dense_sample_epoch 20 \ | ||
--scaled_depth --depth_scale_pred \ | ||
--exp_id 'stage2-multiobj-plane' \ | ||
|