-
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.
Update code to support running on different dstype of Sintel
- Loading branch information
1 parent
c41db70
commit 5229455
Showing
7 changed files
with
185 additions
and
116 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
baseline="python -u train-supervised.py \ | ||
--name upsampling-baseline \ | ||
--num_epochs 100 \ | ||
--batch_size 3 \ | ||
--lr 0.0004 \ | ||
--wdecay 0.00001" | ||
|
||
plus_l1="python -u train-supervised.py \ | ||
--name upsampling-plusl1 \ | ||
--num_epochs 100 \ | ||
--batch_size 3 \ | ||
--lr 0.0004 \ | ||
--wdecay 0.00001 \ | ||
--wloss_l1recon 1.0" | ||
|
||
plus_ssim="python -u train-supervised.py \ | ||
--name upsampling-plusssim \ | ||
--num_epochs 100 \ | ||
--batch_size 3 \ | ||
--lr 0.0004 \ | ||
--wdecay 0.00001 \ | ||
--wloss_ssimrecon 1.0" | ||
|
||
full="python -u train-supervised.py \ | ||
--name upsampling-full \ | ||
--num_epochs 100 \ | ||
--batch_size 3 \ | ||
--lr 0.0004 \ | ||
--wdecay 0.00001 \ | ||
--wloss_l1recon 1.0 \ | ||
--wloss_ssimrecon 1.0" | ||
|
||
cmd=$baseline # Change this line | ||
|
||
echo ${cmd} | ||
eval ${cmd} |
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
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
Oops, something went wrong.