├── .gitignore ├── CSP.sh ├── Ensemble_model_CSP.py ├── Ensemble_model_external.py ├── Ensemble_model_internal.py ├── LICENSE ├── README.md ├── SPCSE.sh ├── SPCSE_prediction.py ├── SPCSE_train.py ├── SPWCF.sh ├── SPWCF_prediction.py ├── Sememe_PMI_Matrix_Generator.py ├── data_generator.sh ├── hownet.txt ├── hownet_corpus_data_picker.py ├── pickle_version_change.py ├── scorer.py ├── test_data_generator.py └── work.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /CSP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/CSP.sh -------------------------------------------------------------------------------- /Ensemble_model_CSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/Ensemble_model_CSP.py -------------------------------------------------------------------------------- /Ensemble_model_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/Ensemble_model_external.py -------------------------------------------------------------------------------- /Ensemble_model_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/Ensemble_model_internal.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /SPCSE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/SPCSE.sh -------------------------------------------------------------------------------- /SPCSE_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/SPCSE_prediction.py -------------------------------------------------------------------------------- /SPCSE_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/SPCSE_train.py -------------------------------------------------------------------------------- /SPWCF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/SPWCF.sh -------------------------------------------------------------------------------- /SPWCF_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/SPWCF_prediction.py -------------------------------------------------------------------------------- /Sememe_PMI_Matrix_Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/Sememe_PMI_Matrix_Generator.py -------------------------------------------------------------------------------- /data_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/data_generator.sh -------------------------------------------------------------------------------- /hownet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/hownet.txt -------------------------------------------------------------------------------- /hownet_corpus_data_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/hownet_corpus_data_picker.py -------------------------------------------------------------------------------- /pickle_version_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/pickle_version_change.py -------------------------------------------------------------------------------- /scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/scorer.py -------------------------------------------------------------------------------- /test_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/test_data_generator.py -------------------------------------------------------------------------------- /work.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Character-enhanced-Sememe-Prediction/HEAD/work.sh --------------------------------------------------------------------------------