jakezhaojb / DSGA-1008-Spring2017-A2

DSGA-1008-Spring2017-A2
4 stars 18 forks source link

Missing arguments #3

Open mullachv opened 7 years ago

mullachv commented 7 years ago

Jake Your code is missing the command line args for dropout and tied, from the sample supplied by PyTorch folks:

parser.add_argument('--dropout', type=float, default=0.2, help='dropout applied to layers (0 = no dropout)')
parser.add_argument('--tied', action='store_true', help='tie the word embedding and softmax weights')

Is that intentional or accidental?