├── .gitignore ├── LICENSE ├── README.md ├── Task 1 └── README.md ├── Task 2: Working with English data ├── NER_model.py ├── english_NER.ipynb ├── get_word_vectors.py └── process_data.py ├── Task 3: Hindi data ├── Convert SSF data to CoNLL form.ipynb ├── Hindi_NER.ipynb ├── NER_model.py ├── first_hindi_model ├── get_word_vectors.py ├── hindi_vectors.ipynb └── process_data.py └── data ├── CoNLL-2003 ├── eng.testa ├── eng.testa.openNLP ├── eng.testb ├── eng.testb.openNLP ├── eng.train └── eng.train.openNLP ├── readme.md └── training_hindi_NER.utf8 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/README.md -------------------------------------------------------------------------------- /Task 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 1/README.md -------------------------------------------------------------------------------- /Task 2: Working with English data/NER_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 2: Working with English data/NER_model.py -------------------------------------------------------------------------------- /Task 2: Working with English data/english_NER.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 2: Working with English data/english_NER.ipynb -------------------------------------------------------------------------------- /Task 2: Working with English data/get_word_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 2: Working with English data/get_word_vectors.py -------------------------------------------------------------------------------- /Task 2: Working with English data/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 2: Working with English data/process_data.py -------------------------------------------------------------------------------- /Task 3: Hindi data/Convert SSF data to CoNLL form.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/Convert SSF data to CoNLL form.ipynb -------------------------------------------------------------------------------- /Task 3: Hindi data/Hindi_NER.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/Hindi_NER.ipynb -------------------------------------------------------------------------------- /Task 3: Hindi data/NER_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/NER_model.py -------------------------------------------------------------------------------- /Task 3: Hindi data/first_hindi_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/first_hindi_model -------------------------------------------------------------------------------- /Task 3: Hindi data/get_word_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/get_word_vectors.py -------------------------------------------------------------------------------- /Task 3: Hindi data/hindi_vectors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/hindi_vectors.ipynb -------------------------------------------------------------------------------- /Task 3: Hindi data/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/Task 3: Hindi data/process_data.py -------------------------------------------------------------------------------- /data/CoNLL-2003/eng.testa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/CoNLL-2003/eng.testa -------------------------------------------------------------------------------- /data/CoNLL-2003/eng.testa.openNLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/CoNLL-2003/eng.testa.openNLP -------------------------------------------------------------------------------- /data/CoNLL-2003/eng.testb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/CoNLL-2003/eng.testb -------------------------------------------------------------------------------- /data/CoNLL-2003/eng.testb.openNLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/CoNLL-2003/eng.testb.openNLP -------------------------------------------------------------------------------- /data/CoNLL-2003/eng.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/CoNLL-2003/eng.train -------------------------------------------------------------------------------- /data/CoNLL-2003/eng.train.openNLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/CoNLL-2003/eng.train.openNLP -------------------------------------------------------------------------------- /data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/readme.md -------------------------------------------------------------------------------- /data/training_hindi_NER.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/NER-using-Deep-Learning/HEAD/data/training_hindi_NER.utf8 --------------------------------------------------------------------------------