pengsida/NeuralBody
1
1# People-Snapshot dataset2 3# training4# python train_net.py --cfg_file configs/snapshot_f3c.yaml exp_name female3c resume False5# python train_net.py --cfg_file configs/snapshot_f4c.yaml exp_name female4c resume False6# python train_net.py --cfg_file configs/snapshot_f6p.yaml exp_name female6p resume False7# python train_net.py --cfg_file configs/snapshot_f7p.yaml exp_name female7p resume False8# python train_net.py --cfg_file configs/snapshot_f8p.yaml exp_name female8p resume False9# python train_net.py --cfg_file configs/snapshot_m2c.yaml exp_name male2c resume False10# python train_net.py --cfg_file configs/snapshot_m2o.yaml exp_name male2o resume False11# python train_net.py --cfg_file configs/snapshot_m3c.yaml exp_name male3c resume False12# python train_net.py --cfg_file configs/snapshot_m5o.yaml exp_name male5o resume False13 14# ZJU-Mocap dataset15 16# training17# python train_net.py --cfg_file configs/latent_xyzc_313.yaml exp_name xyzc_313 resume False18# python train_net.py --cfg_file configs/latent_xyzc_315.yaml exp_name xyzc_315 resume False19# python train_net.py --cfg_file configs/latent_xyzc_392.yaml exp_name xyzc_392 resume False20# python train_net.py --cfg_file configs/latent_xyzc_393.yaml exp_name xyzc_393 resume False21# python train_net.py --cfg_file configs/latent_xyzc_394.yaml exp_name xyzc_394 resume False22# python train_net.py --cfg_file configs/latent_xyzc_377.yaml exp_name xyzc_377 resume False23# python train_net.py --cfg_file configs/latent_xyzc_386.yaml exp_name xyzc_386 resume False24# python train_net.py --cfg_file configs/latent_xyzc_390.yaml exp_name xyzc_390 resume False25# python train_net.py --cfg_file configs/latent_xyzc_387.yaml exp_name xyzc_387 resume False26 27# distributed training28# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_313.yaml exp_name xyzc_313 resume False gpus "0, 1, 2, 3" distributed True29# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_315.yaml exp_name xyzc_315 resume False gpus "0, 1, 2, 3" distributed True30# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_392.yaml exp_name xyzc_392 resume False gpus "0, 1, 2, 3" distributed True31# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_393.yaml exp_name xyzc_393 resume False gpus "0, 1, 2, 3" distributed True32# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_394.yaml exp_name xyzc_394 resume False gpus "0, 1, 2, 3" distributed True33# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_377.yaml exp_name xyzc_377 resume False gpus "0, 1, 2, 3" distributed True34# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_386.yaml exp_name xyzc_386 resume False gpus "0, 1, 2, 3" distributed True35# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_390.yaml exp_name xyzc_390 resume False gpus "0, 1, 2, 3" distributed True36# python -m torch.distributed.launch --nproc_per_node=4 train_net.py --cfg_file configs/latent_xyzc_387.yaml exp_name xyzc_387 resume False gpus "0, 1, 2, 3" distributed True37 