Skip to content

Commit

Permalink
make train_gan.py not totally broken by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdonahue committed May 3, 2017
1 parent 8301961 commit 46237d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train_gan.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
help='Dataset (mnist/imagenet)')
parser.add_argument('--raw_size', type=int,
help='Raw minor edge size (for image datasets)')
parser.add_argument('--crop_size', type=int,
parser.add_argument('--crop_size', type=int, default=28,
help='Crop size (for image datasets)')
parser.add_argument('--crop_resize', type=int,
help='Size of crop for D in, G out (E still takes crop_size resolution)')
Expand Down

0 comments on commit 46237d4

Please sign in to comment.