├── .gitignore ├── LICENSE ├── README.md ├── code ├── .idea │ ├── code.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── attr2vec.py ├── attr2vec_func.py ├── attr_data_methods.py ├── conf.py ├── cse_pos_neg.py ├── data_utils.py ├── embed_func.py ├── embed_utils.py ├── ent2vec_sparse.py ├── loss.py ├── params.py ├── se_pos.py ├── se_pos_neg.py └── triples_data.py └── data └── dbp15k.tar.gz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/README.md -------------------------------------------------------------------------------- /code/.idea/code.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/.idea/code.iml -------------------------------------------------------------------------------- /code/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/.idea/misc.xml -------------------------------------------------------------------------------- /code/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/.idea/modules.xml -------------------------------------------------------------------------------- /code/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/.idea/workspace.xml -------------------------------------------------------------------------------- /code/attr2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/attr2vec.py -------------------------------------------------------------------------------- /code/attr2vec_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/attr2vec_func.py -------------------------------------------------------------------------------- /code/attr_data_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/attr_data_methods.py -------------------------------------------------------------------------------- /code/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/conf.py -------------------------------------------------------------------------------- /code/cse_pos_neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/cse_pos_neg.py -------------------------------------------------------------------------------- /code/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/data_utils.py -------------------------------------------------------------------------------- /code/embed_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/embed_func.py -------------------------------------------------------------------------------- /code/embed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/embed_utils.py -------------------------------------------------------------------------------- /code/ent2vec_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/ent2vec_sparse.py -------------------------------------------------------------------------------- /code/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/loss.py -------------------------------------------------------------------------------- /code/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/params.py -------------------------------------------------------------------------------- /code/se_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/se_pos.py -------------------------------------------------------------------------------- /code/se_pos_neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/se_pos_neg.py -------------------------------------------------------------------------------- /code/triples_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/code/triples_data.py -------------------------------------------------------------------------------- /data/dbp15k.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nju-websoft/JAPE/HEAD/data/dbp15k.tar.gz --------------------------------------------------------------------------------