uma-pi1 / kge

LibKGE - A knowledge graph embedding library for reproducible research
MIT License
765 stars 124 forks source link

How to run kge test on train split #248

Closed jwzhi closed 2 years ago

jwzhi commented 2 years ago

Hi,

I want to run the kge test command on the train split instead of the test split as a sanity check for my user-defined model (if the model is really learning anything meaningful) But I cannot really find a way to do this. Can you point me to how to specify the config arguments?

The one I tried is

dataset:
  name: fb15k-237
  files:
    test:
      filename: train.del
      type: triples

And it does not work.

rgemulla commented 2 years ago

In the job folder, run kge eval . --eval.split train.

jwzhi commented 2 years ago

It works, thank you!