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')
Jake Your code is missing the command line args for dropout and tied, from the sample supplied by PyTorch folks:
Is that intentional or accidental?