├── .gitignore ├── LICENSE ├── Readme.md ├── config ├── hyper_params.json └── log_config.json ├── data ├── ambiguous.zip ├── base.zip └── reverb45k │ ├── reverb45k_test │ └── reverb45k_valid ├── overview.png ├── ppdb ├── ppdb_server.py └── xxxl_clusters.zip ├── requirements.txt ├── setup.sh └── src ├── cesi_main.py ├── cluster.py ├── embeddings.py ├── helper.py ├── metrics.py ├── sideInfo.py ├── skge ├── __init__.py ├── actfun.py ├── base.py ├── cesi.py ├── hole.py ├── param.py ├── rescal.py ├── sample.py ├── test.py ├── transe.py ├── util.py └── version.py └── unionFind.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/Readme.md -------------------------------------------------------------------------------- /config/hyper_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/config/hyper_params.json -------------------------------------------------------------------------------- /config/log_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/config/log_config.json -------------------------------------------------------------------------------- /data/ambiguous.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/data/ambiguous.zip -------------------------------------------------------------------------------- /data/base.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/data/base.zip -------------------------------------------------------------------------------- /data/reverb45k/reverb45k_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/data/reverb45k/reverb45k_test -------------------------------------------------------------------------------- /data/reverb45k/reverb45k_valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/data/reverb45k/reverb45k_valid -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/overview.png -------------------------------------------------------------------------------- /ppdb/ppdb_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/ppdb/ppdb_server.py -------------------------------------------------------------------------------- /ppdb/xxxl_clusters.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/ppdb/xxxl_clusters.zip -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/setup.sh -------------------------------------------------------------------------------- /src/cesi_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/cesi_main.py -------------------------------------------------------------------------------- /src/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/cluster.py -------------------------------------------------------------------------------- /src/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/embeddings.py -------------------------------------------------------------------------------- /src/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/helper.py -------------------------------------------------------------------------------- /src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/metrics.py -------------------------------------------------------------------------------- /src/sideInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/sideInfo.py -------------------------------------------------------------------------------- /src/skge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/__init__.py -------------------------------------------------------------------------------- /src/skge/actfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/actfun.py -------------------------------------------------------------------------------- /src/skge/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/base.py -------------------------------------------------------------------------------- /src/skge/cesi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/cesi.py -------------------------------------------------------------------------------- /src/skge/hole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/hole.py -------------------------------------------------------------------------------- /src/skge/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/param.py -------------------------------------------------------------------------------- /src/skge/rescal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/rescal.py -------------------------------------------------------------------------------- /src/skge/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/sample.py -------------------------------------------------------------------------------- /src/skge/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/test.py -------------------------------------------------------------------------------- /src/skge/transe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/transe.py -------------------------------------------------------------------------------- /src/skge/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/skge/util.py -------------------------------------------------------------------------------- /src/skge/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1' 2 | -------------------------------------------------------------------------------- /src/unionFind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/cesi/HEAD/src/unionFind.py --------------------------------------------------------------------------------