├── KG ├── LSTM.py ├── NERmodel.py ├── NNmodel.py ├── main.py ├── myio.py ├── regLSTM.py ├── tensorLSTM.py ├── util.py └── workDir │ ├── data │ ├── EMNLPdata2.0 │ ├── devdata │ ├── process.py │ ├── rawdata │ ├── testdata │ └── traindata │ └── model.NER └── README.md /KG/LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/LSTM.py -------------------------------------------------------------------------------- /KG/NERmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/NERmodel.py -------------------------------------------------------------------------------- /KG/NNmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/NNmodel.py -------------------------------------------------------------------------------- /KG/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/main.py -------------------------------------------------------------------------------- /KG/myio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/myio.py -------------------------------------------------------------------------------- /KG/regLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/regLSTM.py -------------------------------------------------------------------------------- /KG/tensorLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/tensorLSTM.py -------------------------------------------------------------------------------- /KG/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/util.py -------------------------------------------------------------------------------- /KG/workDir/data/EMNLPdata2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/data/EMNLPdata2.0 -------------------------------------------------------------------------------- /KG/workDir/data/devdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/data/devdata -------------------------------------------------------------------------------- /KG/workDir/data/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/data/process.py -------------------------------------------------------------------------------- /KG/workDir/data/rawdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/data/rawdata -------------------------------------------------------------------------------- /KG/workDir/data/testdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/data/testdata -------------------------------------------------------------------------------- /KG/workDir/data/traindata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/data/traindata -------------------------------------------------------------------------------- /KG/workDir/model.NER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/KG/workDir/model.NER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mswellhao/chineseNER/HEAD/README.md --------------------------------------------------------------------------------