pykeen Logo
stable

Getting Started

  • Installation
  • First Steps
  • Tracking Results during Training
  • Saving Checkpoints during Training
  • A Toy Example with Translational Distance Models
  • Understanding the Evaluation
  • Optimizing a Model’s Hyper-parameters
  • Novel Link Prediction
    • After Training a Model
    • Loading a Model
      • Potential Caveats
  • Running an Ablation Study
  • Performance Tricks

Bring Your Own

  • Bring Your Own Data
  • Bring Your Own Interaction

Extending PyKEEN

  • Extending the Datasets
  • Extending the Models
  • Extending the Interaction Models (Old-Style)

Reference

  • Pipeline
  • Models
  • Datasets
  • Triples
  • Training
  • Stoppers
  • Loss Functions
  • Regularizers
  • Result Trackers
  • Evaluation
  • Negative Sampling
  • Hyper-parameter Optimization
  • Ablation
  • Lookup
  • Prediction
  • Sealant
  • Constants
  • pykeen.nn
  • Utilities

Appendix

  • References
pykeen
  • »
  • Novel Link Prediction
  • Edit on GitHub

Novel Link Prediction¶

After training, the interaction model (e.g., TransE, ConvE, RotatE) can assign a score to an arbitrary triple, whether it appeared during training, testing, or not. In PyKEEN, each is implemented such that the higher the score (or less negative the score), the more likely a triple is to be true.

However, for most models, these scores do not have obvious statistical interpretations. This has two main consequences:

  1. The score for a triple from one model can not be compared to the score for that triple from another model

  2. There is no a priori minimum score for a triple to be labeled as true, so predictions must be given as a prioritization by sorting a set of triples by their respective scores.

After training a model, there are four high-level interfaces for making predictions:

  1. pykeen.models.predict.get_tail_prediction_df() for a given head/relation pair

  2. pykeen.models.predict.get_relation_prediction_df() for a given head/tail pair

  3. pykeen.models.predict.get_head_prediction_df() for a given relation/tail pair

  4. pykeen.models.predict.get_all_prediction_df() for prioritizing links

Scientifically, pykeen.models.predict.get_all_prediction_df() is the most interesting in a scenario where predictions could be tested and validated experimentally.

After Training a Model¶

This example shows using the pykeen.pipeline.pipeline() to train a model which will already be in memory. Each of the high-level interfaces are exposed through the model:

>>> from pykeen.pipeline import pipeline
>>> # Run the pipeline
>>> pipeline_result = pipeline(dataset='Nations', model='RotatE')
>>> model = pipeline_result.model
>>> # Predict tails
>>> predicted_tails_df = model.get_tail_prediction_df('brazil', 'intergovorgs')
>>> # Predict relations
>>> predicted_relations_df = model.get_relation_prediction_df('brazil', 'uk')
>>> # Predict heads
>>> predicted_heads_df = model.get_head_prediction_df('conferences', 'brazil')
>>> # Score all triples (memory intensive)
>>> predictions_df = model.get_all_prediction_df()
>>> # Score top K triples
>>> top_k_predictions_df = model.get_all_prediction_df(k=150)
>>> # save the model
>>> pipeline_result.save_to_directory('doctests/nations_rotate')

Loading a Model¶

This example shows how to reload a previously trained model. The pykeen.pipeline.PipelineResult.save_to_directory() function makes a file named trained_model.pkl, so we will use the one from the previous example.

>>> import torch
>>> model = torch.load('doctests/nations_rotate/trained_model.pkl')
>>> # Predict tails
>>> predicted_tails_df = model.get_tail_prediction_df('brazil', 'intergovorgs')
>>> # everything else is the same as above

There’s an example model available at https://github.com/pykeen/pykeen/blob/master/notebooks/hello_world/nations_transe/trained_model.pkl from the “Hello World” notebook for you to try.

Potential Caveats¶

The model is trained on its ability to predict the appropriate tail for a given head/relation pair as well as its ability to predict the appropriate head for a given relation/tail pair. This means that while the model can technically predict relations between a given head/tail pair, it must be done with the caveat that it was not trained for this task.

Next Previous

© Copyright 2019-2021, PyKEEN Project Team. Revision 30a4375e.

Built with Sphinx using a theme provided by Read the Docs.
Read the Docs v: stable
Versions
latest
stable
v1.4.0
v1.3.0
v1.1.0
v1.0.0
Downloads
html
On Read the Docs
Project Home
Builds