├── .DS_Store ├── .idea ├── .gitignore ├── CasRel_fastNLP.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── config.py ├── data ├── .DS_Store ├── NYT │ ├── README.md │ ├── build_data.py │ ├── raw_NYT │ │ ├── README.md │ │ └── generate.py │ ├── test_split_by_num │ │ ├── README.md │ │ └── split_by_num.py │ └── test_split_by_type │ │ ├── README.md │ │ └── generate_triples.py └── WebNLG │ ├── README.md │ ├── build_data.py │ ├── raw_WebNLG │ ├── README.md │ └── generate.py │ ├── test_split_by_num │ ├── README.md │ └── split_by_num.py │ └── test_split_by_type │ ├── README.md │ └── generate_triples.py ├── data_loader.py ├── model.py ├── pretrained_bert_models └── .DS_Store ├── run.py ├── saved_logs ├── .DS_Store └── NYT │ └── .DS_Store ├── saved_weights ├── .DS_Store └── NYT │ └── .DS_Store ├── test.py ├── train.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/CasRel_fastNLP.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.idea/CasRel_fastNLP.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/config.py -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/NYT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/README.md -------------------------------------------------------------------------------- /data/NYT/build_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/build_data.py -------------------------------------------------------------------------------- /data/NYT/raw_NYT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/raw_NYT/README.md -------------------------------------------------------------------------------- /data/NYT/raw_NYT/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/raw_NYT/generate.py -------------------------------------------------------------------------------- /data/NYT/test_split_by_num/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/test_split_by_num/README.md -------------------------------------------------------------------------------- /data/NYT/test_split_by_num/split_by_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/test_split_by_num/split_by_num.py -------------------------------------------------------------------------------- /data/NYT/test_split_by_type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/test_split_by_type/README.md -------------------------------------------------------------------------------- /data/NYT/test_split_by_type/generate_triples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/NYT/test_split_by_type/generate_triples.py -------------------------------------------------------------------------------- /data/WebNLG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/README.md -------------------------------------------------------------------------------- /data/WebNLG/build_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/build_data.py -------------------------------------------------------------------------------- /data/WebNLG/raw_WebNLG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/raw_WebNLG/README.md -------------------------------------------------------------------------------- /data/WebNLG/raw_WebNLG/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/raw_WebNLG/generate.py -------------------------------------------------------------------------------- /data/WebNLG/test_split_by_num/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/test_split_by_num/README.md -------------------------------------------------------------------------------- /data/WebNLG/test_split_by_num/split_by_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/test_split_by_num/split_by_num.py -------------------------------------------------------------------------------- /data/WebNLG/test_split_by_type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/test_split_by_type/README.md -------------------------------------------------------------------------------- /data/WebNLG/test_split_by_type/generate_triples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data/WebNLG/test_split_by_type/generate_triples.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/data_loader.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/model.py -------------------------------------------------------------------------------- /pretrained_bert_models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/pretrained_bert_models/.DS_Store -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/run.py -------------------------------------------------------------------------------- /saved_logs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/saved_logs/.DS_Store -------------------------------------------------------------------------------- /saved_logs/NYT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/saved_logs/NYT/.DS_Store -------------------------------------------------------------------------------- /saved_weights/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/saved_weights/.DS_Store -------------------------------------------------------------------------------- /saved_weights/NYT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/saved_weights/NYT/.DS_Store -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusun-nlp/CasRel_fastNLP/HEAD/utils.py --------------------------------------------------------------------------------