├── README.md ├── data ├── demo.dev.char ├── demo.test.char └── demo.train.char ├── main.py ├── model ├── CNNmodel.py ├── crf.py └── layers.py ├── test.sh ├── train.sh └── utils ├── alphabet.py ├── data.py ├── functions.py ├── gazetteer.py ├── metric.py └── trie.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/README.md -------------------------------------------------------------------------------- /data/demo.dev.char: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/data/demo.dev.char -------------------------------------------------------------------------------- /data/demo.test.char: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/data/demo.test.char -------------------------------------------------------------------------------- /data/demo.train.char: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/data/demo.train.char -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/main.py -------------------------------------------------------------------------------- /model/CNNmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/model/CNNmodel.py -------------------------------------------------------------------------------- /model/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/model/crf.py -------------------------------------------------------------------------------- /model/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/model/layers.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/test.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/train.sh -------------------------------------------------------------------------------- /utils/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/utils/alphabet.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/gazetteer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/utils/gazetteer.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitaowufeng/LR-CNN/HEAD/utils/trie.py --------------------------------------------------------------------------------