├── .gitignore ├── 199801_people_s_daily.txt ├── BERT └── README.md ├── LSTMpredict.py ├── PD_BiLSTM-CRF.py ├── PD_BiLSTM.py ├── README.md ├── Useless ├── getError.py ├── learnEmbedding.py ├── test_to_categorical.py ├── testkeras.py └── textpreprocess.1.py ├── acc.png ├── model.png ├── preprocess.py └── result.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/.gitignore -------------------------------------------------------------------------------- /199801_people_s_daily.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/199801_people_s_daily.txt -------------------------------------------------------------------------------- /BERT/README.md: -------------------------------------------------------------------------------- 1 | # Use BERT on PeopleDaily NER 2 | -------------------------------------------------------------------------------- /LSTMpredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/LSTMpredict.py -------------------------------------------------------------------------------- /PD_BiLSTM-CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/PD_BiLSTM-CRF.py -------------------------------------------------------------------------------- /PD_BiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/PD_BiLSTM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/README.md -------------------------------------------------------------------------------- /Useless/getError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/Useless/getError.py -------------------------------------------------------------------------------- /Useless/learnEmbedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/Useless/learnEmbedding.py -------------------------------------------------------------------------------- /Useless/test_to_categorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/Useless/test_to_categorical.py -------------------------------------------------------------------------------- /Useless/testkeras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/Useless/testkeras.py -------------------------------------------------------------------------------- /Useless/textpreprocess.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/Useless/textpreprocess.1.py -------------------------------------------------------------------------------- /acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/acc.png -------------------------------------------------------------------------------- /model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/model.png -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/preprocess.py -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanConstantine/PeoplesDailyNER/HEAD/result.png --------------------------------------------------------------------------------