You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -59,13 +59,13 @@ conda create --name von --file pkg_specs.txt
59
59
source activate von
60
60
```
61
61
62
-
- Compile the rendering kernel by the following:
62
+
- Compile our rendering kernel by running the following:
63
63
```bash
64
64
./install.sh
65
65
```
66
66
67
67
68
-
- (Optional) Install [blender](https://www.blender.org/) for visualizing generated 3D shapes. After installation, please add blender to your PATH environment variable.
68
+
- (Optional) Install [blender](https://www.blender.org/) for visualizing generated 3D shapes. After installation, please add blender to the PATH environment variable.
parser.add_argument('--serial_batches', action='store_true', help='if true, takes images in order to make batches, otherwise takes them randomly')
43
37
parser.add_argument('--max_dataset_size', type=int, default=float("inf"), help='Maximum number of samples allowed per dataset. If the dataset directory contains more than max_dataset_size, only a subset is loaded.')
44
-
45
38
# models
46
39
parser.add_argument('--num_Ds', type=int, default=2, help='the number of discrminators')
47
-
parser.add_argument('--gan_mode', type=str, default='lsgan', help='dcgan | lsgan | wgangp | hinge') # for 2D texture network; not for 3D; use gan_mode_3D for 3D shape
48
40
parser.add_argument('--netD', type=str, default='multi', help='selects model to use for netD')
49
41
parser.add_argument('--netG', type=str, default='resnet_cat', help='selects model to use for netG')
42
+
parser.add_argument('--use_dropout', action='store_true', help='use dropout for the generator')
50
43
parser.add_argument('--netE', type=str, default='adaIN', help='selects model to use for netE')
44
+
parser.add_argument('--where_add', type=str, default='all', help='where to add z in the network G: input | all | middle')
51
45
parser.add_argument('--netG_3D', type=str, default='G0', help='selects model to use for netG_3D')
52
46
parser.add_argument('--netD_3D', type=str, default='D0', help='selects model to use for netD_3D')
53
47
parser.add_argument('--norm', type=str, default='inst', help='instance normalization or batch normalization')
parser.add_argument('--nef', type=int, default=64, help='# of encoder filters in first conv layer')
53
+
parser.add_argument('--ngf', type=int, default=64, help='# of gen filters in first conv layer')
54
+
parser.add_argument('--ndf', type=int, default=64, help='# of discrim filters in first conv layer')
55
+
parser.add_argument('--ngf_3d', type=int, default=64, help='# of gen filters in first conv layer')
56
+
parser.add_argument('--ndf_3d', type=int, default=64, help='# of discrim filters in first conv layer')
58
57
# extra parameters
59
-
parser.add_argument('--where_add', type=str, default='all', help='input|all|middle; where to add z in the network G')
58
+
parser.add_argument('--gan_mode', type=str, default='lsgan', help='dcgan | lsgan | wgangp | hinge') # for 2D texture network; not for 3D; use gan_mode_3D for 3D shape
parser.add_argument('--update_html_freq', type=int, default=4000, help='frequency of saving training results to html')
12
12
parser.add_argument('--print_freq', type=int, default=400, help='frequency of showing training results on console')
13
+
parser.add_argument('--no_html', action='store_true', help='do not save intermediate training results to [opt.checkpoints_dir]/[opt.name]/web/')
14
+
# saving and training models
13
15
parser.add_argument('--save_latest_freq', type=int, default=10000, help='frequency of saving the latest results')
14
16
parser.add_argument('--save_epoch_freq', type=int, default=10, help='frequency of saving checkpoints at the end of epochs')
15
17
parser.add_argument('--continue_train', action='store_true', help='continue training: load the latest model')
16
18
parser.add_argument('--niter', type=int, default=100, help='# of iter at starting learning rate')
17
19
parser.add_argument('--niter_decay', type=int, default=100, help='# of iter to linearly decay learning rate to zero')
18
20
parser.add_argument('--epoch_count', type=int, default=1, help='the starting epoch count, we save the model by <epoch_count>, <epoch_count>+<save_latest_freq>, ...')
19
-
parser.add_argument('--beta1', type=float, default=0.5, help='momentum term of adam')
20
-
parser.add_argument('--no_html', action='store_true', help='do not save intermediate training results to [opt.checkpoints_dir]/[opt.name]/web/')
21
21
# learning rate
22
+
parser.add_argument('--beta1', type=float, default=0.5, help='momentum term of adam')
22
23
parser.add_argument('--lr', type=float, default=0.0002, help='initial learning rate for adam')
0 commit comments