├── CasRel-ch ├── app.py ├── data_loader.py ├── get_pb_model.py ├── get_tf_pb_model.py ├── model.py ├── parse.py ├── predict.py ├── pretrained_bert_models │ ├── README.md │ └── chinese_L-12_H-768_A-12 │ │ └── README.txt ├── results │ └── CCKS2019 │ │ └── test_result.json ├── train.py └── utils.py └── ReadMe.md /CasRel-ch/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/app.py -------------------------------------------------------------------------------- /CasRel-ch/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/data_loader.py -------------------------------------------------------------------------------- /CasRel-ch/get_pb_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/get_pb_model.py -------------------------------------------------------------------------------- /CasRel-ch/get_tf_pb_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/get_tf_pb_model.py -------------------------------------------------------------------------------- /CasRel-ch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/model.py -------------------------------------------------------------------------------- /CasRel-ch/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/parse.py -------------------------------------------------------------------------------- /CasRel-ch/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/predict.py -------------------------------------------------------------------------------- /CasRel-ch/pretrained_bert_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/pretrained_bert_models/README.md -------------------------------------------------------------------------------- /CasRel-ch/pretrained_bert_models/chinese_L-12_H-768_A-12/README.txt: -------------------------------------------------------------------------------- 1 | BERT 模型 2 | -------------------------------------------------------------------------------- /CasRel-ch/results/CCKS2019/test_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/results/CCKS2019/test_result.json -------------------------------------------------------------------------------- /CasRel-ch/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/train.py -------------------------------------------------------------------------------- /CasRel-ch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/CasRel-ch/utils.py -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xuanfang1121/casrel-ch/HEAD/ReadMe.md --------------------------------------------------------------------------------