Skip to content

Commit

Permalink
default
Browse files Browse the repository at this point in the history
  • Loading branch information
lilianweng committed Nov 8, 2018
1 parent 0c2786f commit ddcebc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@


@click.command()
@click.option('--seq-len', type=int, default=20, show_default=True, help="Input sequence length.")
@click.option('--seq-len', type=int, default=10, show_default=True, help="Input sequence length.")
@click.option('--d-model', type=int, default=512, show_default=True, help="d_model")
@click.option('--d-ff', type=int, default=2048, show_default=True, help="d_ff")
@click.option('--n-head', type=int, default=8, show_default=True, help="n_head")
@click.option('--batch-size', type=int, default=128, show_default=True, help="Batch size")
@click.option('--batch-size', type=int, default=256, show_default=True, help="Batch size")
@click.option('--max-steps', type=int, default=300_000, show_default=True, help="Max train steps.")
@click.option('--dataset', type=click.Choice(['iwslt15', 'wmt14', 'wmt15']),
default='iwslt15', show_default=True, help="Which translation dataset to use.")
Expand Down

0 comments on commit ddcebc3

Please sign in to comment.