Skip to content

Commit

Permalink
Revert model parameter default changes
Browse files Browse the repository at this point in the history
It was changed in the web dataset PR by error
  • Loading branch information
rom1504 authored Jun 16, 2021
1 parent 2eceb84 commit f215b01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions train_dalle.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@

model_group.add_argument('--dim', default = 512, type = int, help = 'Model dimension')

model_group.add_argument('--text_seq_len', default = 128, type = int, help = 'Text sequence length')
model_group.add_argument('--text_seq_len', default = 256, type = int, help = 'Text sequence length')

model_group.add_argument('--depth', default = 2, type = int, help = 'Model depth')

model_group.add_argument('--heads', default = 4, type = int, help = 'Model number of heads')
model_group.add_argument('--heads', default = 8, type = int, help = 'Model number of heads')

model_group.add_argument('--dim_head', default = 16, type = int, help = 'Model head dimension')
model_group.add_argument('--dim_head', default = 64, type = int, help = 'Model head dimension')

train_group.add_argument('--ff_dropout', default = 0.0, type = float, help = 'Feed forward dropout.')

Expand Down

0 comments on commit f215b01

Please sign in to comment.