├── LICENSE.txt ├── README.md ├── base ├── __init__.py ├── base_data_loader.py ├── base_model.py └── base_trainer.py ├── baselines ├── XGBoost │ ├── README.md │ ├── feature_extractor.py │ ├── model_prediction.py │ ├── model_training.py │ ├── model_tuning.py │ └── self_supervision_generation.py ├── simple_MLP │ ├── __init__.py │ ├── data_loader.py │ ├── model.py │ ├── test.py │ ├── test_simple_MLP.ipynb │ └── train.py ├── simple_parent.py ├── simple_structure.py └── simple_structure.sh ├── case_studies ├── infer_results_637_20191111.tsv ├── mag_cs_case_study_20191111.tsv └── mag_full_case_study_20191111.tsv ├── config_files ├── config.20190812_SemEval_Noun_STP_PGAT_MR_Net.json ├── config.20190812_SemEval_Noun_STP_PGAT_PATR_PMLP_Net.json ├── config.20190814_SemEval_Noun_STP_PGAT_MR_Net.json ├── config.20190814_SemEval_Noun_STP_PGAT_PATR_PMLP_Net.json ├── config.20190815_SemEval_Noun_STP_PGAT_PATR_PMLP_MTL.json ├── config.20190816_SemEval_Verb_STP_PGAT_MR_Net.json ├── config.20190816_SemEval_Verb_STP_PGAT_PGAT_PATR_Net.json ├── config.SemEval_Noun_PGAT_MR_ExpLBM.json ├── config.mag.json └── config.wordnet.json ├── data └── mag_cs_new637.txt ├── data_loader ├── __init__.py ├── data_loaders.py └── dataset.py ├── data_preprocessing ├── mag-all-fos.ipynb ├── mag-cs-fos.ipynb └── semeval-task14.ipynb ├── generate_dataset_binary.py ├── infer.py ├── logger ├── __init__.py ├── logger.py ├── logger_config.json └── visualization.py ├── model ├── __init__.py ├── loss.py ├── metric.py ├── model.py └── model_zoo.py ├── parse_config.py ├── scripts └── parse_to_semeval_format.py ├── test_fast.py ├── train.py ├── trainer ├── __init__.py └── trainer.py └── utils ├── __init__.py └── util.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/README.md -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/base/__init__.py -------------------------------------------------------------------------------- /base/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/base/base_data_loader.py -------------------------------------------------------------------------------- /base/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/base/base_model.py -------------------------------------------------------------------------------- /base/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/base/base_trainer.py -------------------------------------------------------------------------------- /baselines/XGBoost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/XGBoost/README.md -------------------------------------------------------------------------------- /baselines/XGBoost/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/XGBoost/feature_extractor.py -------------------------------------------------------------------------------- /baselines/XGBoost/model_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/XGBoost/model_prediction.py -------------------------------------------------------------------------------- /baselines/XGBoost/model_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/XGBoost/model_training.py -------------------------------------------------------------------------------- /baselines/XGBoost/model_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/XGBoost/model_tuning.py -------------------------------------------------------------------------------- /baselines/XGBoost/self_supervision_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/XGBoost/self_supervision_generation.py -------------------------------------------------------------------------------- /baselines/simple_MLP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/simple_MLP/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_MLP/data_loader.py -------------------------------------------------------------------------------- /baselines/simple_MLP/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_MLP/model.py -------------------------------------------------------------------------------- /baselines/simple_MLP/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_MLP/test.py -------------------------------------------------------------------------------- /baselines/simple_MLP/test_simple_MLP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_MLP/test_simple_MLP.ipynb -------------------------------------------------------------------------------- /baselines/simple_MLP/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_MLP/train.py -------------------------------------------------------------------------------- /baselines/simple_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_parent.py -------------------------------------------------------------------------------- /baselines/simple_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_structure.py -------------------------------------------------------------------------------- /baselines/simple_structure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/baselines/simple_structure.sh -------------------------------------------------------------------------------- /case_studies/infer_results_637_20191111.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/case_studies/infer_results_637_20191111.tsv -------------------------------------------------------------------------------- /case_studies/mag_cs_case_study_20191111.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/case_studies/mag_cs_case_study_20191111.tsv -------------------------------------------------------------------------------- /case_studies/mag_full_case_study_20191111.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/case_studies/mag_full_case_study_20191111.tsv -------------------------------------------------------------------------------- /config_files/config.20190812_SemEval_Noun_STP_PGAT_MR_Net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190812_SemEval_Noun_STP_PGAT_MR_Net.json -------------------------------------------------------------------------------- /config_files/config.20190812_SemEval_Noun_STP_PGAT_PATR_PMLP_Net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190812_SemEval_Noun_STP_PGAT_PATR_PMLP_Net.json -------------------------------------------------------------------------------- /config_files/config.20190814_SemEval_Noun_STP_PGAT_MR_Net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190814_SemEval_Noun_STP_PGAT_MR_Net.json -------------------------------------------------------------------------------- /config_files/config.20190814_SemEval_Noun_STP_PGAT_PATR_PMLP_Net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190814_SemEval_Noun_STP_PGAT_PATR_PMLP_Net.json -------------------------------------------------------------------------------- /config_files/config.20190815_SemEval_Noun_STP_PGAT_PATR_PMLP_MTL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190815_SemEval_Noun_STP_PGAT_PATR_PMLP_MTL.json -------------------------------------------------------------------------------- /config_files/config.20190816_SemEval_Verb_STP_PGAT_MR_Net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190816_SemEval_Verb_STP_PGAT_MR_Net.json -------------------------------------------------------------------------------- /config_files/config.20190816_SemEval_Verb_STP_PGAT_PGAT_PATR_Net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.20190816_SemEval_Verb_STP_PGAT_PGAT_PATR_Net.json -------------------------------------------------------------------------------- /config_files/config.SemEval_Noun_PGAT_MR_ExpLBM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.SemEval_Noun_PGAT_MR_ExpLBM.json -------------------------------------------------------------------------------- /config_files/config.mag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.mag.json -------------------------------------------------------------------------------- /config_files/config.wordnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/config_files/config.wordnet.json -------------------------------------------------------------------------------- /data/mag_cs_new637.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/data/mag_cs_new637.txt -------------------------------------------------------------------------------- /data_loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_loader/data_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/data_loader/data_loaders.py -------------------------------------------------------------------------------- /data_loader/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/data_loader/dataset.py -------------------------------------------------------------------------------- /data_preprocessing/mag-all-fos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/data_preprocessing/mag-all-fos.ipynb -------------------------------------------------------------------------------- /data_preprocessing/mag-cs-fos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/data_preprocessing/mag-cs-fos.ipynb -------------------------------------------------------------------------------- /data_preprocessing/semeval-task14.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/data_preprocessing/semeval-task14.ipynb -------------------------------------------------------------------------------- /generate_dataset_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/generate_dataset_binary.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/infer.py -------------------------------------------------------------------------------- /logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/logger/__init__.py -------------------------------------------------------------------------------- /logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/logger/logger.py -------------------------------------------------------------------------------- /logger/logger_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/logger/logger_config.json -------------------------------------------------------------------------------- /logger/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/logger/visualization.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/model/loss.py -------------------------------------------------------------------------------- /model/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/model/metric.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/model/model.py -------------------------------------------------------------------------------- /model/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/model/model_zoo.py -------------------------------------------------------------------------------- /parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/parse_config.py -------------------------------------------------------------------------------- /scripts/parse_to_semeval_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/scripts/parse_to_semeval_format.py -------------------------------------------------------------------------------- /test_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/test_fast.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/train.py -------------------------------------------------------------------------------- /trainer/__init__.py: -------------------------------------------------------------------------------- 1 | from .trainer import * 2 | -------------------------------------------------------------------------------- /trainer/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/trainer/trainer.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import * 2 | -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickeysjm/TaxoExpan/HEAD/utils/util.py --------------------------------------------------------------------------------