python main.py --cuda --epochs 10 --model LSTM
python main.py --cuda --epochs 10 --model Transformer --lr 5
python main.py --cuda --epochs 10 --model LSTM --nhid 1024 --nlayers 6 --emsize 512
python main.py --cuda --epochs 10 --model Transformer --lr 5 --nhid 1024 --nlayers 6 --emsize 512 --nhead 8
original code from : https://github.com/pytorch/examples/tree/master/word_language_model
~