├── .gitignore ├── .idea ├── chinese_company_name_recognition.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── __pycache__ ├── embedding.cpython-35.pyc └── read_location_names.cpython-35.pyc ├── data ├── LocationNames.txt ├── raw_sentences.txt └── segmented_words.txt ├── embedding.py ├── embedding_files ├── embedding.bin ├── embedding_model └── words.txt ├── location_classifier.py ├── model.py └── read_location_names.py /.gitignore: -------------------------------------------------------------------------------- 1 | /data/augmented_corpus.txt 2 | -------------------------------------------------------------------------------- /.idea/chinese_company_name_recognition.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/.idea/chinese_company_name_recognition.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /__pycache__/embedding.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/__pycache__/embedding.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/read_location_names.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/__pycache__/read_location_names.cpython-35.pyc -------------------------------------------------------------------------------- /data/LocationNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/data/LocationNames.txt -------------------------------------------------------------------------------- /data/raw_sentences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/data/raw_sentences.txt -------------------------------------------------------------------------------- /data/segmented_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/data/segmented_words.txt -------------------------------------------------------------------------------- /embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/embedding.py -------------------------------------------------------------------------------- /embedding_files/embedding.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/embedding_files/embedding.bin -------------------------------------------------------------------------------- /embedding_files/embedding_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/embedding_files/embedding_model -------------------------------------------------------------------------------- /embedding_files/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/embedding_files/words.txt -------------------------------------------------------------------------------- /location_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/location_classifier.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /read_location_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buttered-cat/chinese_company_name_recognition/HEAD/read_location_names.py --------------------------------------------------------------------------------