├── .DS_Store ├── Data ├── .DS_Store ├── CoNLL │ ├── .DS_Store │ ├── dev.txt │ ├── label.txt │ ├── test.txt │ └── train.txt └── format.json ├── README.md ├── engine.py ├── img ├── .DS_Store └── ‎Overal‎l.jpeg ├── main.py ├── make_top_k_mapping.py ├── train.py └── util ├── loss.py ├── metric.py ├── model.py ├── reader.py └── summary.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/.DS_Store -------------------------------------------------------------------------------- /Data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/Data/.DS_Store -------------------------------------------------------------------------------- /Data/CoNLL/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/Data/CoNLL/.DS_Store -------------------------------------------------------------------------------- /Data/CoNLL/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/Data/CoNLL/dev.txt -------------------------------------------------------------------------------- /Data/CoNLL/label.txt: -------------------------------------------------------------------------------- 1 | O 2 | LOC 3 | ORG 4 | MISC 5 | PER -------------------------------------------------------------------------------- /Data/CoNLL/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/Data/CoNLL/test.txt -------------------------------------------------------------------------------- /Data/CoNLL/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/Data/CoNLL/train.txt -------------------------------------------------------------------------------- /Data/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/Data/format.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/README.md -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/engine.py -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/‎Overal‎l.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/img/‎Overal‎l.jpeg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/main.py -------------------------------------------------------------------------------- /make_top_k_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/make_top_k_mapping.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/train.py -------------------------------------------------------------------------------- /util/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/util/loss.py -------------------------------------------------------------------------------- /util/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/util/metric.py -------------------------------------------------------------------------------- /util/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/util/model.py -------------------------------------------------------------------------------- /util/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/util/reader.py -------------------------------------------------------------------------------- /util/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sue991/CoFiNER/HEAD/util/summary.py --------------------------------------------------------------------------------