├── .idea ├── bert-transformer-vae.iml ├── deployment.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── webServers.xml └── workspace.xml ├── README.md ├── beamsearch.py ├── bert ├── __init__.py ├── bert_model_for_PAGE.py └── tokenization.py ├── bert_transformer_vae_for_PAGE.py ├── data ├── LM │ └── pre.py └── PAGE │ └── 111 ├── data_load.py ├── hparams.py ├── model.jpg ├── model.py ├── modules.py ├── prepro.py ├── results ├── PAGE │ └── 111 └── bert │ └── 111 ├── test.py ├── test_PAGE.py ├── train_TPAGE.py ├── utils.py ├── 代码解释 └── 运行命令 /.idea/bert-transformer-vae.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/bert-transformer-vae.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/README.md -------------------------------------------------------------------------------- /beamsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/beamsearch.py -------------------------------------------------------------------------------- /bert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bert/bert_model_for_PAGE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/bert/bert_model_for_PAGE.py -------------------------------------------------------------------------------- /bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/bert/tokenization.py -------------------------------------------------------------------------------- /bert_transformer_vae_for_PAGE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/bert_transformer_vae_for_PAGE.py -------------------------------------------------------------------------------- /data/LM/pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/data/LM/pre.py -------------------------------------------------------------------------------- /data/PAGE/111: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/data_load.py -------------------------------------------------------------------------------- /hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/hparams.py -------------------------------------------------------------------------------- /model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/model.jpg -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/model.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/modules.py -------------------------------------------------------------------------------- /prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/prepro.py -------------------------------------------------------------------------------- /results/PAGE/111: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/bert/111: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/test.py -------------------------------------------------------------------------------- /test_PAGE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/test_PAGE.py -------------------------------------------------------------------------------- /train_TPAGE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/train_TPAGE.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/utils.py -------------------------------------------------------------------------------- /代码解释: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /运行命令: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhaiming1996/BERT-T2T/HEAD/运行命令 --------------------------------------------------------------------------------