UnpackedRemoteDataset

class UnpackedRemoteDataset(training_url, testing_url, validation_url, cache_root=None, eager=False, create_inverse_triples=False, stream=True, force=False)[source]

Bases: pykeen.datasets.base.PathDataset

A dataset with all three of train, test, and validation sets as URLs.

Initialize dataset.

Parameters
  • training_url (str) – The URL of the training file

  • testing_url (str) – The URL of the testing file

  • validation_url (str) – The URL of the validation file

  • cache_root (Optional[str]) – An optional directory to store the extracted files. Is none is given, the default PyKEEN directory is used. This is defined either by the environment variable PYKEEN_HOME or defaults to ~/.pykeen.

  • eager (bool) – Should the data be loaded eagerly? Defaults to false.

  • create_inverse_triples (bool) – Should inverse triples be created? Defaults to false.

  • stream (bool) –

  • force (bool) –