├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── demo.test.config ├── demo.train.config ├── main.py ├── model ├── .DS_Store ├── IntNet.py ├── MemoryBank.py ├── SentenceRep.py ├── __init__.py ├── crf.py ├── seqlabel.py ├── wordrep.py └── wordsequence.py ├── sample_data ├── .DS_Store └── eng.bioes.train └── utils ├── __init__.py ├── alphabet.py ├── data.py ├── functions.py ├── metric.py └── tagSchemeConverter.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/README.md -------------------------------------------------------------------------------- /demo.test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/demo.test.config -------------------------------------------------------------------------------- /demo.train.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/demo.train.config -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/main.py -------------------------------------------------------------------------------- /model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/.DS_Store -------------------------------------------------------------------------------- /model/IntNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/IntNet.py -------------------------------------------------------------------------------- /model/MemoryBank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/MemoryBank.py -------------------------------------------------------------------------------- /model/SentenceRep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/SentenceRep.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'max' 2 | -------------------------------------------------------------------------------- /model/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/crf.py -------------------------------------------------------------------------------- /model/seqlabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/seqlabel.py -------------------------------------------------------------------------------- /model/wordrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/wordrep.py -------------------------------------------------------------------------------- /model/wordsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/model/wordsequence.py -------------------------------------------------------------------------------- /sample_data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/sample_data/.DS_Store -------------------------------------------------------------------------------- /sample_data/eng.bioes.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/sample_data/eng.bioes.train -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'max' 2 | -------------------------------------------------------------------------------- /utils/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/utils/alphabet.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/tagSchemeConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslydia/Hire-NER/HEAD/utils/tagSchemeConverter.py --------------------------------------------------------------------------------