[go: nahoru, domu]

Skip to content

Commit

Permalink
fix some trivial spelling mistakes in help texts
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSchwarz committed Jun 22, 2018
1 parent d7ca9e6 commit 1f43556
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chainer/train_fsns.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
help='freeze weights of localization net')
parser.add_argument("--zoom", type=float, default=0.9, help="Zoom for initial bias of spatial transformer")
parser.add_argument("--optimize-all-interval", type=int, default=5,
help="intervall in which to optimize the whole network instead of only a part")
help="interval in which to optimize the whole network instead of only a part")
parser.add_argument("--use-dropout", action='store_true', default=False, help='use dropout in network')
parser.add_argument("--test-image", help='path to an image that should be used by BBoxPlotter')
parser = add_default_arguments(parser)
Expand Down
4 changes: 2 additions & 2 deletions chainer/train_svhn.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
parser.add_argument("--load-localization", action='store_true', default=False, help="only load localization net")
parser.add_argument("--load-recognition", action='store_true', default=False, help="only load recognition net")
parser.add_argument("--is-trainer-snapshot", action='store_true', default=False,
help="inidicate that snapshot to load has been saved by trainer itself")
help="indicate that snapshot to load has been saved by trainer itself")
parser.add_argument("--no-log", action='store_false', default=True, help="disable logging")
parser.add_argument("--freeze-localization", action='store_true', default=False,
help='freeze weights of localization net')
parser.add_argument("--zoom", type=float, default=0.9, help="Zoom for initial bias of spatial transformer")
parser.add_argument("--optimize-all-interval", type=int, default=5,
help="intervall in which to optimize the whole network instead of only a part")
help="interval in which to optimize the whole network instead of only a part")
parser.add_argument("--use-dropout", action='store_true', default=False, help='use dropout in network')
parser.add_argument("--test-image", help='path to an image that should be used by BBoxPlotter')
parser = add_default_arguments(parser)
Expand Down
2 changes: 1 addition & 1 deletion chainer/train_text_recognition.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
parser.add_argument("--load-localization", action='store_true', default=False, help="only load localization net")
parser.add_argument("--load-recognition", action='store_true', default=False, help="only load recognition net")
parser.add_argument("--is-trainer-snapshot", action='store_true', default=False,
help="inidicate that snapshot to load has been saved by trainer itself")
help="indicate that snapshot to load has been saved by trainer itself")
parser.add_argument("--no-log", action='store_false', default=True, help="disable logging")
parser.add_argument("--freeze-localization", action='store_true', default=False,
help='freeze weights of localization net')
Expand Down

0 comments on commit 1f43556

Please sign in to comment.