├── .DS_Store ├── .idea ├── NCEL.iml ├── dictionaries │ └── ethan.xml ├── encodings.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── convert_yamada.py ├── el.sh ├── load_el.sh ├── ncel ├── __init__.py ├── data │ ├── KBPDataReader.py │ ├── __init__.py │ ├── kbp10_formatter.py │ ├── kbp15_formatter.py │ ├── kbp15_formatter2.py │ ├── load_conll_data.py │ ├── load_kbp_data.py │ ├── load_ncel_data.py │ ├── load_wned_data.py │ ├── load_xlwiki_data.py │ ├── wikiCandidates.py │ └── wikiRedirect.py ├── models │ ├── __init__.py │ ├── base.py │ ├── entity_linking.py │ ├── entity_linking.py_bak │ ├── featureGenerator.py │ ├── mlp.py │ ├── ncel.py │ ├── ncel.pyc │ ├── ntee.py │ ├── pncel.py │ ├── pncelmlp.py │ ├── subncel.py │ ├── subncel_no_neigh_var.py │ └── subncel_prior.py ├── run_el.py └── utils │ ├── Candidates.py │ ├── __init__.py │ ├── afs_safe_logger.py │ ├── data.py │ ├── data.py_bak │ ├── document.py │ ├── layers.py │ ├── logging.proto │ ├── logging.py │ ├── logging_pb2.py │ ├── logparse.py │ ├── misc.py │ ├── misc.py_bak │ ├── model_reader.py │ ├── tokenizer.py │ ├── trainer.py │ └── xmlProcessor.py ├── readme.md ├── run_entity_linking.py ├── run_kbp_formatter.py └── run_load_data.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/NCEL.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/NCEL.iml -------------------------------------------------------------------------------- /.idea/dictionaries/ethan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/dictionaries/ethan.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /convert_yamada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/convert_yamada.py -------------------------------------------------------------------------------- /el.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/el.sh -------------------------------------------------------------------------------- /load_el.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/load_el.sh -------------------------------------------------------------------------------- /ncel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ncel/data/KBPDataReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/KBPDataReader.py -------------------------------------------------------------------------------- /ncel/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ncel/data/kbp10_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/kbp10_formatter.py -------------------------------------------------------------------------------- /ncel/data/kbp15_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/kbp15_formatter.py -------------------------------------------------------------------------------- /ncel/data/kbp15_formatter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/kbp15_formatter2.py -------------------------------------------------------------------------------- /ncel/data/load_conll_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/load_conll_data.py -------------------------------------------------------------------------------- /ncel/data/load_kbp_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/load_kbp_data.py -------------------------------------------------------------------------------- /ncel/data/load_ncel_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/load_ncel_data.py -------------------------------------------------------------------------------- /ncel/data/load_wned_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/load_wned_data.py -------------------------------------------------------------------------------- /ncel/data/load_xlwiki_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/load_xlwiki_data.py -------------------------------------------------------------------------------- /ncel/data/wikiCandidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/wikiCandidates.py -------------------------------------------------------------------------------- /ncel/data/wikiRedirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/data/wikiRedirect.py -------------------------------------------------------------------------------- /ncel/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ncel/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/base.py -------------------------------------------------------------------------------- /ncel/models/entity_linking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/entity_linking.py -------------------------------------------------------------------------------- /ncel/models/entity_linking.py_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/entity_linking.py_bak -------------------------------------------------------------------------------- /ncel/models/featureGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/featureGenerator.py -------------------------------------------------------------------------------- /ncel/models/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/mlp.py -------------------------------------------------------------------------------- /ncel/models/ncel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/ncel.py -------------------------------------------------------------------------------- /ncel/models/ncel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/ncel.pyc -------------------------------------------------------------------------------- /ncel/models/ntee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/ntee.py -------------------------------------------------------------------------------- /ncel/models/pncel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/pncel.py -------------------------------------------------------------------------------- /ncel/models/pncelmlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/pncelmlp.py -------------------------------------------------------------------------------- /ncel/models/subncel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/subncel.py -------------------------------------------------------------------------------- /ncel/models/subncel_no_neigh_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/subncel_no_neigh_var.py -------------------------------------------------------------------------------- /ncel/models/subncel_prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/models/subncel_prior.py -------------------------------------------------------------------------------- /ncel/run_el.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/run_el.py -------------------------------------------------------------------------------- /ncel/utils/Candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/Candidates.py -------------------------------------------------------------------------------- /ncel/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ncel/utils/afs_safe_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/afs_safe_logger.py -------------------------------------------------------------------------------- /ncel/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/data.py -------------------------------------------------------------------------------- /ncel/utils/data.py_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/data.py_bak -------------------------------------------------------------------------------- /ncel/utils/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/document.py -------------------------------------------------------------------------------- /ncel/utils/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/layers.py -------------------------------------------------------------------------------- /ncel/utils/logging.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/logging.proto -------------------------------------------------------------------------------- /ncel/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/logging.py -------------------------------------------------------------------------------- /ncel/utils/logging_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/logging_pb2.py -------------------------------------------------------------------------------- /ncel/utils/logparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/logparse.py -------------------------------------------------------------------------------- /ncel/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/misc.py -------------------------------------------------------------------------------- /ncel/utils/misc.py_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/misc.py_bak -------------------------------------------------------------------------------- /ncel/utils/model_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/model_reader.py -------------------------------------------------------------------------------- /ncel/utils/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/tokenizer.py -------------------------------------------------------------------------------- /ncel/utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/trainer.py -------------------------------------------------------------------------------- /ncel/utils/xmlProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/ncel/utils/xmlProcessor.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/readme.md -------------------------------------------------------------------------------- /run_entity_linking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/run_entity_linking.py -------------------------------------------------------------------------------- /run_kbp_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/run_kbp_formatter.py -------------------------------------------------------------------------------- /run_load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoMiner/NCEL/HEAD/run_load_data.py --------------------------------------------------------------------------------