diff options
| author | junyanz <junyanz@berkeley.edu> | 2017-07-03 17:18:13 -0400 |
|---|---|---|
| committer | junyanz <junyanz@berkeley.edu> | 2017-07-03 17:18:13 -0400 |
| commit | 233630e79d79901faff420eb0ae481b35d952f97 (patch) | |
| tree | 66b98747d7c0a97b37e2921ecbc378ae994aef35 /README.md | |
| parent | 11690eaffc7dcdc0f64267263f5d7a3b4fc735cf (diff) | |
fix instancenorm & batchnorm
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,13 +87,13 @@ bash ./datasets/download_pix2pix_dataset.sh facades - Train a model: ```bash #!./scripts/train_pix2pix.sh -python train.py --dataroot ./datasets/facades --name facades_pix2pix --model pix2pix --which_model_netG unet_256 --which_direction BtoA --lambda_A 100 --dataset_mode aligned --use_dropout --no_lsgan +python train.py --dataroot ./datasets/facades --name facades_pix2pix --model pix2pix --which_model_netG unet_256 --which_direction BtoA --lambda_A 100 --dataset_mode aligned --use_dropout --no_lsgan --norm batch ``` - To view training results and loss plots, run `python -m visdom.server` and click the URL http://localhost:8097. To see more intermediate results, check out `./checkpoints/facades_pix2pix/web/index.html` - Test the model (`bash ./scripts/test_pix2pix.sh`): ```bash #!./scripts/test_pix2pix.sh -python test.py --dataroot ./datasets/facades --name facades_pix2pix --model pix2pix --which_model_netG unet_256 --which_direction BtoA --dataset_mode aligned +python test.py --dataroot ./datasets/facades --name facades_pix2pix --model pix2pix --which_model_netG unet_256 --which_direction BtoA --dataset_mode aligned --norm batch ``` The test results will be saved to a html file here: `./results/facades_pix2pix/latest_val/index.html`. |
