├── README.md ├── __init__.py ├── bert_config.py ├── checkpoints └── 占位.txt ├── data ├── __init__.py ├── final_data │ └── labels.txt └── raw_data │ ├── dev.json │ ├── event_schema.json │ ├── process.py │ ├── sample_data.json │ ├── test1.json │ └── train.json ├── dataset.py ├── logs ├── main.log └── preprocess.log ├── main.py ├── models.py ├── preprocess.py ├── run.sh └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc └── utils.cpython-37.pyc └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bert_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/bert_config.py -------------------------------------------------------------------------------- /checkpoints/占位.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/final_data/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/final_data/labels.txt -------------------------------------------------------------------------------- /data/raw_data/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/raw_data/dev.json -------------------------------------------------------------------------------- /data/raw_data/event_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/raw_data/event_schema.json -------------------------------------------------------------------------------- /data/raw_data/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/raw_data/process.py -------------------------------------------------------------------------------- /data/raw_data/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/raw_data/sample_data.json -------------------------------------------------------------------------------- /data/raw_data/test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/raw_data/test1.json -------------------------------------------------------------------------------- /data/raw_data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/data/raw_data/train.json -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/dataset.py -------------------------------------------------------------------------------- /logs/main.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/logs/main.log -------------------------------------------------------------------------------- /logs/preprocess.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/logs/preprocess.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/models.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/preprocess.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/run.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taishan1994/pytorch_bert_multi_classification/HEAD/utils/utils.py --------------------------------------------------------------------------------