Reduce the config parsing codes for DS2 and make it looks cleaner.
Created by: xinghai-sun
Shorten the code:
parser.add_argument(
"--num_passes",
default=200,
type=int,
help="Training pass number. (default: %(default)s)")
to
add_arg('num_passes', int, 200, "# of training epochs.")
And align the columns to make it looks cleaner.