gitextract_oy6ipegf/ ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── bertsum-chinese.iml │ ├── inspectionProfiles/ │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── bert-chinese-web/ │ ├── .idea/ │ │ ├── .gitignore │ │ ├── bert-chinese-web.iml │ │ ├── inspectionProfiles/ │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── README.md │ ├── bert-base-chinese/ │ │ ├── config.json │ │ └── vocab.txt │ ├── config.py │ ├── predict.py │ ├── src/ │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ ├── encoder.py │ │ │ ├── model_builder_LAI.py │ │ │ ├── neural.py │ │ │ ├── optimizers.py │ │ │ └── rnn.py │ │ ├── others/ │ │ │ ├── __init__.py │ │ │ └── utils.py │ │ └── prepro/ │ │ ├── __init__.py │ │ └── data_builder.py │ ├── templates/ │ │ └── index.html │ └── web_main.py ├── bert-sum-dataprocess/ │ ├── .idea/ │ │ ├── .gitignore │ │ ├── bert-sum-dataprocess.iml │ │ ├── inspectionProfiles/ │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── README.md │ ├── data/ │ │ └── scope.csv │ ├── json_data/ │ │ ├── LCSTS.test.0.json │ │ ├── LCSTS.train.0.json │ │ └── scope.train.chunk_size_1.0.json │ ├── main.py │ └── src/ │ ├── __init__.py │ └── utils.py └── bertsum-chinese/ ├── .idea/ │ ├── .gitignore │ ├── bertsum-chinese.iml │ ├── inspectionProfiles/ │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── LICENSE ├── README.md ├── args_config.py ├── bert_data/ │ └── LCSTS.train.1.bert.pt ├── json_data/ │ └── LCSTS.train.1.json ├── logs/ │ └── bert_classifier ├── preprocess_LAI.py ├── requirements.txt ├── src/ │ ├── __init__.py │ ├── models/ │ │ ├── __init__.py │ │ ├── data_loader.py │ │ ├── encoder.py │ │ ├── model_builder_LAI.py │ │ ├── neural.py │ │ ├── optimizers.py │ │ ├── rnn.py │ │ └── trainer.py │ ├── others/ │ │ ├── __init__.py │ │ ├── logging.py │ │ ├── statistical.py │ │ └── utils.py │ └── prepro/ │ ├── __init__.py │ └── data_builder_LAI.py └── train_LAI.py