gitextract_w4g5rx2q/ ├── ERNIE_pretrain/ │ └── README.md ├── LICENSE ├── README.md ├── THUCNews/ │ └── data/ │ ├── class.txt │ ├── dev.txt │ ├── test.txt │ └── train.txt ├── bert_pretrain/ │ └── README.md ├── models/ │ ├── ERNIE.py │ ├── bert.py │ ├── bert_CNN.py │ ├── bert_DPCNN.py │ ├── bert_RCNN.py │ └── bert_RNN.py ├── pytorch_pretrained/ │ ├── __init__.py │ ├── __main__.py │ ├── convert_gpt2_checkpoint_to_pytorch.py │ ├── convert_openai_checkpoint_to_pytorch.py │ ├── convert_tf_checkpoint_to_pytorch.py │ ├── convert_transfo_xl_checkpoint_to_pytorch.py │ ├── file_utils.py │ ├── modeling.py │ ├── modeling_gpt2.py │ ├── modeling_openai.py │ ├── modeling_transfo_xl.py │ ├── modeling_transfo_xl_utilities.py │ ├── optimization.py │ ├── optimization_openai.py │ ├── tokenization.py │ ├── tokenization_gpt2.py │ ├── tokenization_openai.py │ └── tokenization_transfo_xl.py ├── run.py ├── train_eval.py └── utils.py