Skip to content

Commit

Permalink
Merge pull request SeanNaren#134 from srviest/patch-2
Browse files Browse the repository at this point in the history
fix bug in turning off bucketing sampler
  • Loading branch information
Sean Naren committed Aug 16, 2017
2 parents 998904f + 2fc914a commit 3f10ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
parser.add_argument('--tensorboard', dest='tensorboard', action='store_true', help='Turn on tensorboard graphing')
parser.add_argument('--log_dir', default='visualize/deepspeech_final', help='Location of tensorboard log')
parser.add_argument('--log_params', dest='log_params', action='store_true', help='Log parameter values and gradients')
parser.add_argument('--no_bucketing', dest='no_bucketing', action='store_false',
parser.add_argument('--no_bucketing', dest='no_bucketing', action='store_true',
help='Turn off bucketing and sample from dataset based on sequence length (smallest to largest)')
parser.set_defaults(cuda=False, silent=False, checkpoint=False, visdom=False, augment=False, tensorboard=False,
log_params=False, no_bucketing=False)
Expand Down

0 comments on commit 3f10ec0

Please sign in to comment.