├── LICENCE ├── README.md ├── base.py ├── data └── example │ ├── test │ ├── train │ └── valid ├── dataset.py ├── models.py ├── requirements.txt ├── run.py └── utils.py /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/base.py -------------------------------------------------------------------------------- /data/example/test: -------------------------------------------------------------------------------- 1 | daughter child_of mother -------------------------------------------------------------------------------- /data/example/train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/data/example/train -------------------------------------------------------------------------------- /data/example/valid: -------------------------------------------------------------------------------- 1 | son sibling_of daughter -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/dataset.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | tensorflow 3 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/run.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TakumaE/TorusE/HEAD/utils.py --------------------------------------------------------------------------------