├── README.md ├── batching.py ├── config.py ├── data ├── dev.json ├── test.json └── train.json ├── data_process.py └── dict ├── event_schema.json ├── vocab_roles_label_map.txt └── vocab_trigger_label_map.txt /README.md: -------------------------------------------------------------------------------- 1 | # Event-Extration 2 | 2020语言与智能技术竞赛:事件抽取任务 3 | -------------------------------------------------------------------------------- /batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/batching.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/config.py -------------------------------------------------------------------------------- /data/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/data/dev.json -------------------------------------------------------------------------------- /data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/data/test.json -------------------------------------------------------------------------------- /data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/data/train.json -------------------------------------------------------------------------------- /data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/data_process.py -------------------------------------------------------------------------------- /dict/event_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/dict/event_schema.json -------------------------------------------------------------------------------- /dict/vocab_roles_label_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/dict/vocab_roles_label_map.txt -------------------------------------------------------------------------------- /dict/vocab_trigger_label_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARDUJS/Event-Extration/HEAD/dict/vocab_trigger_label_map.txt --------------------------------------------------------------------------------