Source code for pykeen.nn.modules

# -*- coding: utf-8 -*-

"""Stateful interaction functions."""

from __future__ import annotations

import itertools as itt
import logging
import math
from abc import ABC, abstractmethod
from collections import Counter
from operator import itemgetter
from typing import (
    Any,
    Callable,
    ClassVar,
    Generic,
    Iterable,
    List,
    Mapping,
    MutableMapping,
    Optional,
    Sequence,
    Set,
    Tuple,
    Union,
    cast,
)

import more_itertools
import numpy
import torch
from class_resolver import ClassResolver, Hint, OptionalKwargs
from class_resolver.contrib.torch import activation_resolver
from docdata import parse_docdata
from torch import FloatTensor, nn
from torch.nn.init import xavier_normal_

from . import functional as pkf
from .combinations import Combination
from .init import initializer_resolver
from ..typing import (
    HeadRepresentation,
    HintOrType,
    Initializer,
    RelationRepresentation,
    Representation,
    Sign,
    TailRepresentation,
)
from ..utils import ensure_tuple, unpack_singletons, upgrade_to_sequence

__all__ = [
    "interaction_resolver",
    # Base Classes
    "Interaction",
    "FunctionalInteraction",
    "LiteralInteraction",
    "NormBasedInteraction",
    # Adapter classes
    "MonotonicAffineTransformationInteraction",
    # Concrete Classes
    "AutoSFInteraction",
    "BoxEInteraction",
    "ComplExInteraction",
    "ConvEInteraction",
    "ConvKBInteraction",
    "CrossEInteraction",
    "DistMultInteraction",
    "DistMAInteraction",
    "ERMLPInteraction",
    "ERMLPEInteraction",
    "HolEInteraction",
    "KG2EInteraction",
    "MultiLinearTuckerInteraction",
    "MuREInteraction",
    "NTNInteraction",
    "PairREInteraction",
    "ProjEInteraction",
    "RESCALInteraction",
    "RotatEInteraction",
    "SimplEInteraction",
    "SEInteraction",
    "TorusEInteraction",
    "TransDInteraction",
    "TransEInteraction",
    "TransFInteraction",
    "TransHInteraction",
    "TransRInteraction",
    "TransformerInteraction",
    "TripleREInteraction",
    "TuckerInteraction",
    "UMInteraction",
]

logger = logging.getLogger(__name__)


def parallel_slice_batches(
    *representations: Representation,
    split_size: int,
    dim: int,
) -> Iterable[Sequence[Representation]]:
    """
    Slice representations along the given dimension.

    :param representations:
        the representations to slice
    :param split_size:
        the slice size
    :param dim:
        the dimension along which to slice

    :yields: batches of sliced representations
    """
    # normalize input
    rs: Sequence[Sequence[torch.FloatTensor]] = ensure_tuple(*representations)
    # get number of head/relation/tail representations
    length = list(map(len, rs))
    splits = numpy.cumsum([0] + length)
    # flatten list
    rsl: Sequence[torch.FloatTensor] = sum(map(list, rs), [])
    # split tensors
    parts = [r.split(split_size, dim=dim) for r in rsl]
    # broadcasting
    n_parts = max(map(len, parts))
    parts = [r_parts if len(r_parts) == n_parts else r_parts * n_parts for r_parts in parts]
    # yield batches
    for batch in zip(*parts):
        # complex typing
        yield unpack_singletons(*(batch[start:stop] for start, stop in zip(splits, splits[1:])))  # type: ignore


def parallel_unsqueeze(x: Representation, dim: int) -> Representation:
    """Unsqueeze all representations along the given dimension."""
    xs: Sequence[torch.FloatTensor] = upgrade_to_sequence(x)
    xs = [xx.unsqueeze(dim=dim) for xx in xs]
    return xs[0] if len(xs) == 1 else xs


[docs]class Interaction(nn.Module, Generic[HeadRepresentation, RelationRepresentation, TailRepresentation], ABC): """Base class for interaction functions.""" #: The symbolic shapes for entity representations entity_shape: Sequence[str] = ("d",) #: The symbolic shapes for entity representations for tail entities, if different. #: Otherwise, the entity_shape is used for head & tail entities _tail_entity_shape: Optional[Sequence[str]] = None #: The symbolic shapes for relation representations relation_shape: Sequence[str] = ("d",) # if the interaction function's head parameter should only receive a subset of entity representations _head_indices: Optional[Sequence[int]] = None # if the interaction function's tail parameter should only receive a subset of entity representations _tail_indices: Optional[Sequence[int]] = None @property def tail_entity_shape(self) -> Sequence[str]: """Return the symbolic shape for tail entity representations.""" if self._tail_entity_shape is None: return self.entity_shape return self._tail_entity_shape
[docs] def head_indices(self) -> Sequence[int]: """Return the entity representation indices used for the head representations.""" if self._head_indices is None: return list(range(len(self.entity_shape))) return self._head_indices
[docs] def tail_indices(self) -> Sequence[int]: """Return the entity representation indices used for the tail representations.""" if self._tail_indices is None: return list(range(len(self.tail_entity_shape))) return self._tail_indices
[docs] def full_entity_shapes(self) -> Sequence[str]: """Return all entity shapes (head & tail).""" shapes: List[Optional[str]] = [None] * (max(itt.chain(self.head_indices(), self.tail_indices())) + 1) for hi, hs in zip(self.head_indices(), self.entity_shape): shapes[hi] = hs for ti, ts in zip(self.tail_indices(), self.tail_entity_shape): if shapes[ti] is not None and ts != shapes[ti]: raise ValueError("Shape conflict.") shapes[ti] = ts if None in shapes: raise AssertionError("Unused shape.") return cast(List[str], shapes)
[docs] @classmethod def get_dimensions(cls) -> Set[str]: """Get all of the relevant dimension keys. This draws from :data:`Interaction.entity_shape`, :data:`Interaction.relation_shape`, and in the case of :class:`ConvEInteraction`, the :data:`Interaction.tail_entity_shape`. :returns: a set of strings representting the dimension keys. """ # TODO: cannot cover dynamic shapes, e.g., AutoSF return set(itt.chain(cls.entity_shape, cls._tail_entity_shape or set(), cls.relation_shape))
[docs] @abstractmethod def forward( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> torch.FloatTensor: """Compute broadcasted triple scores given broadcasted representations for head, relation and tails. :param h: shape: (`*batch_dims`, `*dims`) The head representations. :param r: shape: (`*batch_dims`, `*dims`) The relation representations. :param t: shape: (`*batch_dims`, `*dims`) The tail representations. :return: shape: batch_dims The scores. """
[docs] def score( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, slice_size: Optional[int] = None, slice_dim: int = 1, ) -> torch.FloatTensor: """Compute broadcasted triple scores with optional slicing. .. note :: At most one of the slice sizes may be not None. # TODO: we could change that to slicing along multiple dimensions, if necessary :param h: shape: (`*batch_dims`, `*dims`) The head representations. :param r: shape: (`*batch_dims`, `*dims`) The relation representations. :param t: shape: (`*batch_dims`, `*dims`) The tail representations. :param slice_size: The slice size. :param slice_dim: The dimension along which to slice. From {0, ..., len(batch_dims)} :return: shape: batch_dims The scores. """ if slice_size is None: return self(h=h, r=r, t=t) return torch.cat( [ self(h=h_batch, r=r_batch, t=t_batch) for h_batch, r_batch, t_batch in parallel_slice_batches(h, r, t, split_size=slice_size, dim=slice_dim) ], dim=slice_dim, )
[docs] def score_hrt( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> torch.FloatTensor: """Score a batch of triples. :param h: shape: (batch_size, d_e) The head representations. :param r: shape: (batch_size, d_r) The relation representations. :param t: shape: (batch_size, d_e) The tail representations. :return: shape: (batch_size, 1) The scores. """ return self.score(h=h, r=r, t=t).unsqueeze(dim=-1)
[docs] def score_h( self, all_entities: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, slice_size: Optional[int] = None, ) -> torch.FloatTensor: """Score all head entities. :param all_entities: shape: (num_entities, d_e) The head representations. :param r: shape: (batch_size, d_r) The relation representations. :param t: shape: (batch_size, d_e) The tail representations. :param slice_size: The slice size. :return: shape: (batch_size, num_entities) The scores. """ return self.score( h=parallel_unsqueeze(all_entities, dim=0), r=parallel_unsqueeze(r, dim=1), t=parallel_unsqueeze(t, dim=1), slice_size=slice_size, )
[docs] def score_r( self, h: HeadRepresentation, all_relations: RelationRepresentation, t: TailRepresentation, slice_size: Optional[int] = None, ) -> torch.FloatTensor: """Score all relations. :param h: shape: (batch_size, d_e) The head representations. :param all_relations: shape: (num_relations, d_r) The relation representations. :param t: shape: (batch_size, d_e) The tail representations. :param slice_size: The slice size. :return: shape: (batch_size, num_entities) The scores. """ return self.score( h=parallel_unsqueeze(h, dim=1), r=parallel_unsqueeze(all_relations, dim=0), t=parallel_unsqueeze(t, dim=1), slice_size=slice_size, )
[docs] def score_t( self, h: HeadRepresentation, r: RelationRepresentation, all_entities: TailRepresentation, slice_size: Optional[int] = None, ) -> torch.FloatTensor: """Score all tail entities. :param h: shape: (batch_size, d_e) The head representations. :param r: shape: (batch_size, d_r) The relation representations. :param all_entities: shape: (num_entities, d_e) The tail representations. :param slice_size: The slice size. :return: shape: (batch_size, num_entities) The scores. """ return self.score( h=parallel_unsqueeze(h, dim=1), r=parallel_unsqueeze(r, dim=1), t=parallel_unsqueeze(all_entities, dim=0), slice_size=slice_size, )
[docs] def reset_parameters(self): """Reset parameters the interaction function may have.""" for mod in self.modules(): if mod is self: continue if hasattr(mod, "reset_parameters"): mod.reset_parameters()
[docs]@parse_docdata class LiteralInteraction( Interaction, Generic[HeadRepresentation, RelationRepresentation, TailRepresentation], ): """The interaction function shared by literal-containing interactions. --- name: LiteralE citation: author: Kristiadi year: 2018 link: https://arxiv.org/abs/1802.00934 """ def __init__( self, base: HintOrType[Interaction[HeadRepresentation, RelationRepresentation, TailRepresentation]], combination: Combination, base_kwargs: Optional[Mapping[str, Any]] = None, ): """Instantiate the module. :param combination: The module used to concatenate the literals to the entity representations :param base: The interaction module :param base_kwargs: Keyword arguments for the interaction module """ super().__init__() self.base = interaction_resolver.make(base, base_kwargs) self.combination = combination # The appended "e" represents the literals that get concatenated # on the entity representations. It does not necessarily have the # same dimension "d" as the entity representations. self.entity_shape = tuple(self.base.entity_shape) + ("e",)
[docs] def forward( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> torch.FloatTensor: """Compute broadcasted triple scores given broadcasted representations for head, relation and tails. :param h: shape: (`*batch_dims`, `*dims`) The head representations. :param r: shape: (`*batch_dims`, `*dims`) The relation representations. :param t: shape: (`*batch_dims`, `*dims`) The tail representations. :return: shape: batch_dims The scores. """ # alternate way of combining entity embeddings + literals # h = torch.cat(h, dim=-1) # h = self.combination(h.view(-1, h.shape[-1])).view(*h.shape[:-1], -1) # type: ignore # t = torch.cat(t, dim=-1) # t = self.combination(t.view(-1, t.shape[-1])).view(*t.shape[:-1], -1) # type: ignore h_proj = self.combination(*h) t_proj = self.combination(*t) return self.base(h=h_proj, r=r, t=t_proj)
[docs]class FunctionalInteraction(Interaction, Generic[HeadRepresentation, RelationRepresentation, TailRepresentation]): """Base class for interaction functions.""" #: The functional interaction form func: Callable[..., torch.FloatTensor]
[docs] def forward( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> torch.FloatTensor: """Compute broadcasted triple scores given broadcasted representations for head, relation and tails. :param h: shape: (`*batch_dims`, `*dims`) The head representations. :param r: shape: (`*batch_dims`, `*dims`) The relation representations. :param t: shape: (`*batch_dims`, `*dims`) The tail representations. :return: shape: batch_dims The scores. """ return self.__class__.func(**self._prepare_for_functional(h=h, r=r, t=t))
def _prepare_for_functional( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> Mapping[str, torch.FloatTensor]: """Conversion utility to prepare the arguments for the functional form.""" kwargs = self._prepare_hrt_for_functional(h=h, r=r, t=t) kwargs.update(self._prepare_state_for_functional()) return kwargs @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: """Conversion utility to prepare the h/r/t representations for the functional form.""" assert all(torch.is_tensor(x) for x in (h, r, t)) return dict(h=h, r=r, t=t) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: """Conversion utility to prepare the state to be passed to the functional form.""" return dict()
[docs]class NormBasedInteraction( FunctionalInteraction, Generic[HeadRepresentation, RelationRepresentation, TailRepresentation], ABC, ): """Norm-based interactions use a (powered) $p$-norm in their scoring function.""" def __init__(self, p: int, power_norm: bool = False): """Initialize the norm-based interaction function. :param p: The norm used with :func:`torch.linalg.vector_norm`. Typically is 1 or 2. :param power_norm: Whether to use the p-th power of the $L_p$ norm. It has the advantage of being differentiable around 0, and numerically more stable. """ super().__init__() self.p = p self.power_norm = power_norm def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict(p=self.p, power_norm=self.power_norm)
[docs]class TransEInteraction(NormBasedInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateful module for the TransE interaction function. .. seealso:: :func:`pykeen.nn.functional.transe_interaction` """ func = pkf.transe_interaction
[docs]class TransFInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateless module for the TransF interaction function. .. seealso:: :func:`pykeen.nn.functional.transf_interaction` """ func = pkf.transf_interaction
[docs]class ComplExInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A module wrapper for the stateless ComplEx interaction function. .. seealso:: :func:`pykeen.nn.functional.complex_interaction` """ func = pkf.complex_interaction
def _calculate_missing_shape_information( embedding_dim: int, input_channels: Optional[int] = None, width: Optional[int] = None, height: Optional[int] = None, ) -> Tuple[int, int, int]: """Automatically calculates missing dimensions for ConvE. :param embedding_dim: The embedding dimension. :param input_channels: The number of input channels for the convolution. :param width: The width of the embedding "image". :param height: The height of the embedding "image". :return: (input_channels, width, height), such that `embedding_dim = input_channels * width * height` :raises ValueError: If no factorization could be found. """ # Store initial input for error message original = (input_channels, width, height) # All are None -> try and make closest to square if input_channels is None and width is None and height is None: input_channels = 1 result_sqrt = math.floor(math.sqrt(embedding_dim)) height = max(factor for factor in range(1, result_sqrt + 1) if embedding_dim % factor == 0) width = embedding_dim // height # Only input channels is None elif input_channels is None and width is not None and height is not None: input_channels = embedding_dim // (width * height) # Only width is None elif input_channels is not None and width is None and height is not None: width = embedding_dim // (height * input_channels) # Only height is none elif height is None and width is not None and input_channels is not None: height = embedding_dim // (width * input_channels) # Width and input_channels are None -> set input_channels to 1 and calculage height elif input_channels is None and height is None and width is not None: input_channels = 1 height = embedding_dim // width # Width and input channels are None -> set input channels to 1 and calculate width elif input_channels is None and height is not None and width is None: input_channels = 1 width = embedding_dim // height if input_channels * width * height != embedding_dim: # type: ignore raise ValueError(f"Could not resolve {original} to a valid factorization of {embedding_dim}.") return input_channels, width, height # type: ignore
[docs]class ConvEInteraction( FunctionalInteraction[torch.FloatTensor, torch.FloatTensor, Tuple[torch.FloatTensor, torch.FloatTensor]], ): """A stateful module for the ConvE interaction function. .. seealso:: :func:`pykeen.nn.functional.conve_interaction` """ # vector & scalar offset tail_entity_shape = ("d", "") #: The head-relation encoder operating on 2D "images" hr2d: nn.Module #: The head-relation encoder operating on the 1D flattened version hr1d: nn.Module #: The interaction function func = pkf.conve_interaction def __init__( self, input_channels: Optional[int] = None, output_channels: int = 32, embedding_height: Optional[int] = None, embedding_width: Optional[int] = None, kernel_height: int = 3, kernel_width: int = 3, input_dropout: float = 0.2, output_dropout: float = 0.3, feature_map_dropout: float = 0.2, embedding_dim: int = 200, apply_batch_normalization: bool = True, ): super().__init__() # Automatic calculation of remaining dimensions logger.info(f"Resolving {input_channels} * {embedding_width} * {embedding_height} = {embedding_dim}.") if embedding_dim is None: embedding_dim = input_channels * embedding_width * embedding_height # Parameter need to fulfil: # input_channels * embedding_height * embedding_width = embedding_dim input_channels, embedding_width, embedding_height = _calculate_missing_shape_information( embedding_dim=embedding_dim, input_channels=input_channels, width=embedding_width, height=embedding_height, ) logger.info(f"Resolved to {input_channels} * {embedding_width} * {embedding_height} = {embedding_dim}.") if input_channels * embedding_height * embedding_width != embedding_dim: raise ValueError( f"Product of input channels ({input_channels}), height ({embedding_height}), and width " f"({embedding_width}) does not equal target embedding dimension ({embedding_dim})", ) # encoders # 1: 2D encoder: BN?, DO, Conv, BN?, Act, DO hr2d_layers = [ nn.BatchNorm2d(input_channels) if apply_batch_normalization else None, nn.Dropout(input_dropout), nn.Conv2d( in_channels=input_channels, out_channels=output_channels, kernel_size=(kernel_height, kernel_width), stride=1, padding=0, bias=True, ), nn.BatchNorm2d(output_channels) if apply_batch_normalization else None, nn.ReLU(), nn.Dropout2d(feature_map_dropout), ] self.hr2d = nn.Sequential(*(layer for layer in hr2d_layers if layer is not None)) # 2: 1D encoder: FC, DO, BN?, Act num_in_features = ( output_channels * (2 * embedding_height - kernel_height + 1) * (embedding_width - kernel_width + 1) ) hr1d_layers = [ nn.Linear(num_in_features, embedding_dim), nn.Dropout(output_dropout), nn.BatchNorm1d(embedding_dim) if apply_batch_normalization else None, nn.ReLU(), ] self.hr1d = nn.Sequential(*(layer for layer in hr1d_layers if layer is not None)) # store reshaping dimensions self.embedding_height = embedding_height self.embedding_width = embedding_width self.input_channels = input_channels @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h, r=r, t=t[0], t_bias=t[1]) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict( input_channels=self.input_channels, embedding_height=self.embedding_height, embedding_width=self.embedding_width, hr2d=self.hr2d, hr1d=self.hr1d, )
[docs]class ConvKBInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateful module for the ConvKB interaction function. .. seealso:: :func:`pykeen.nn.functional.convkb_interaction`` """ func = pkf.convkb_interaction def __init__( self, hidden_dropout_rate: float = 0.0, embedding_dim: int = 200, num_filters: int = 400, ): super().__init__() self.embedding_dim = embedding_dim self.num_filters = num_filters # The interaction model self.conv = nn.Conv2d(in_channels=1, out_channels=num_filters, kernel_size=(1, 3), bias=True) self.activation = nn.ReLU() self.hidden_dropout = nn.Dropout(p=hidden_dropout_rate) self.linear = nn.Linear(embedding_dim * num_filters, 1, bias=True)
[docs] def reset_parameters(self): # noqa: D102 # Use Xavier initialization for weight; bias to zero nn.init.xavier_uniform_(self.linear.weight, gain=nn.init.calculate_gain("relu")) nn.init.zeros_(self.linear.bias) # Initialize all filters to [0.1, 0.1, -0.1], # c.f. https://github.com/daiquocnguyen/ConvKB/blob/master/model.py#L34-L36 nn.init.constant_(self.conv.weight[..., :2], 0.1) nn.init.constant_(self.conv.weight[..., 2], -0.1) nn.init.zeros_(self.conv.bias)
def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict( conv=self.conv, activation=self.activation, hidden_dropout=self.hidden_dropout, linear=self.linear, )
[docs]class DistMultInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A module wrapper for the stateless DistMult interaction function. .. seealso:: :func:`pykeen.nn.functional.distmult_interaction` """ func = pkf.distmult_interaction
[docs]class DistMAInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A module wrapper for the stateless DistMA interaction function. .. seealso:: :func:`pykeen.nn.functional.dist_ma_interaction` """ func = pkf.dist_ma_interaction
[docs]class ERMLPInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateful module for the ER-MLP interaction. .. seealso:: :func:`pykeen.nn.functional.ermlp_interaction` .. math :: f(h, r, t) = W_2 ReLU(W_1 cat(h, r, t) + b_1) + b_2 """ func = pkf.ermlp_interaction def __init__( self, embedding_dim: int, hidden_dim: int, ): """Initialize the interaction function. :param embedding_dim: The embedding vector dimension. :param hidden_dim: The hidden dimension of the MLP. """ super().__init__() """The multi-layer perceptron consisting of an input layer with 3 * self.embedding_dim neurons, a hidden layer with self.embedding_dim neurons and output layer with one neuron. The input is represented by the concatenation embeddings of the heads, relations and tail embeddings. """ self.hidden = nn.Linear(in_features=3 * embedding_dim, out_features=hidden_dim, bias=True) self.activation = nn.ReLU() self.hidden_to_score = nn.Linear(in_features=hidden_dim, out_features=1, bias=True) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict( hidden=self.hidden, activation=self.activation, final=self.hidden_to_score, )
[docs] def reset_parameters(self): # noqa: D102 # Initialize biases with zero nn.init.zeros_(self.hidden.bias) nn.init.zeros_(self.hidden_to_score.bias) # In the original formulation, nn.init.xavier_uniform_(self.hidden.weight) nn.init.xavier_uniform_( self.hidden_to_score.weight, gain=nn.init.calculate_gain(self.activation.__class__.__name__.lower()), )
[docs]class ERMLPEInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateful module for the ER-MLP (E) interaction function. .. seealso:: :func:`pykeen.nn.functional.ermlpe_interaction` """ func = pkf.ermlpe_interaction def __init__( self, hidden_dim: int = 300, input_dropout: float = 0.2, hidden_dropout: float = 0.3, embedding_dim: int = 200, ): super().__init__() self.mlp = nn.Sequential( nn.Dropout(input_dropout), nn.Linear(2 * embedding_dim, hidden_dim), nn.Dropout(hidden_dropout), nn.BatchNorm1d(hidden_dim), nn.ReLU(), nn.Linear(hidden_dim, embedding_dim), nn.Dropout(hidden_dropout), nn.BatchNorm1d(embedding_dim), nn.ReLU(), ) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict(mlp=self.mlp)
[docs]class TransRInteraction( NormBasedInteraction[ torch.FloatTensor, Tuple[torch.FloatTensor, torch.FloatTensor], torch.FloatTensor, ], ): """A stateful module for the TransR interaction function. .. seealso:: :func:`pykeen.nn.functional.transr_interaction` """ relation_shape = ("e", "de") func = pkf.transr_interaction def __init__(self, p: int, power_norm: bool = True): super().__init__(p=p, power_norm=power_norm) @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h, r=r[0], t=t, m_r=r[1])
[docs]class RotatEInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A module wrapper for the stateless RotatE interaction function. .. seealso:: :func:`pykeen.nn.functional.rotate_interaction` """ func = pkf.rotate_interaction
[docs]class HolEInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A module wrapper for the stateless HolE interaction function. .. seealso:: :func:`pykeen.nn.functional.hole_interaction` """ func = pkf.hole_interaction
[docs]class ProjEInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateful module for the ProjE interaction function. .. seealso:: :func:`pykeen.nn.functional.proje_interaction` """ func = pkf.proje_interaction def __init__( self, embedding_dim: int = 50, inner_non_linearity: Optional[nn.Module] = None, ): super().__init__() # Global entity projection self.d_e = nn.Parameter(torch.empty(embedding_dim), requires_grad=True) # Global relation projection self.d_r = nn.Parameter(torch.empty(embedding_dim), requires_grad=True) # Global combination bias self.b_c = nn.Parameter(torch.empty(embedding_dim), requires_grad=True) # Global combination bias self.b_p = nn.Parameter(torch.empty(tuple()), requires_grad=True) if inner_non_linearity is None: inner_non_linearity = nn.Tanh() self.inner_non_linearity = inner_non_linearity
[docs] def reset_parameters(self): # noqa: D102 embedding_dim = self.d_e.shape[0] bound = math.sqrt(6) / embedding_dim for p in self.parameters(): nn.init.uniform_(p, a=-bound, b=bound)
def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: return dict(d_e=self.d_e, d_r=self.d_r, b_c=self.b_c, b_p=self.b_p, activation=self.inner_non_linearity)
[docs]class RESCALInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A module wrapper for the stateless RESCAL interaction function. .. seealso:: :func:`pykeen.nn.functional.rescal_interaction` """ relation_shape = ("dd",) func = pkf.rescal_interaction
[docs]class SEInteraction( NormBasedInteraction[ torch.FloatTensor, Tuple[torch.FloatTensor, torch.FloatTensor], torch.FloatTensor, ], ): """A stateful module for the Structured Embedding (SE) interaction function. .. seealso:: :func:`pykeen.nn.functional.structured_embedding_interaction` """ relation_shape = ("dd", "dd") func = pkf.se_interaction @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h, t=t, r_h=r[0], r_t=r[1])
[docs]class TuckerInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """A stateful module for the stateless Tucker interaction function. .. seealso:: :func:`pykeen.nn.functional.tucker_interaction` """ func = pkf.tucker_interaction # default core tensor initialization # cf. https://github.com/ibalazevic/TuckER/blob/master/model.py#L12 default_core_initializer: ClassVar[Initializer] = staticmethod(nn.init.uniform_) # type: ignore default_core_initializer_kwargs: Mapping[str, Any] = {"a": -1.0, "b": 1.0} def __init__( self, embedding_dim: int = 200, relation_dim: Optional[int] = None, head_dropout: float = 0.3, relation_dropout: float = 0.4, head_relation_dropout: float = 0.5, apply_batch_normalization: bool = True, core_initializer: Hint[Initializer] = None, core_initializer_kwargs: OptionalKwargs = None, ): """Initialize the Tucker interaction function. :param embedding_dim: The entity embedding dimension. :param relation_dim: The relation embedding dimension. :param head_dropout: The dropout rate applied to the head representations. :param relation_dropout: The dropout rate applied to the relation representations. :param head_relation_dropout: The dropout rate applied to the combined head and relation representations. :param apply_batch_normalization: Whether to use batch normalization on head representations and the combination of head and relation. :param core_initializer: the core tensor's initializer, or a hint thereof :param core_initializer_kwargs: additional keyword-based parameters for the initializer """ super().__init__() # normalize initializer if core_initializer is None: core_initializer = self.default_core_initializer self.core_initializer = core_initializer if core_initializer is self.default_core_initializer and core_initializer_kwargs is None: core_initializer_kwargs = self.default_core_initializer_kwargs self.core_initializer_kwargs = core_initializer_kwargs # normalize relation dimension if relation_dim is None: relation_dim = embedding_dim # Core tensor # Note: we use a different dimension permutation as in the official implementation to match the paper. self.core_tensor = nn.Parameter( torch.empty(embedding_dim, relation_dim, embedding_dim), requires_grad=True, ) # Dropout self.head_dropout = nn.Dropout(head_dropout) self.relation_dropout = nn.Dropout(relation_dropout) self.head_relation_dropout = nn.Dropout(head_relation_dropout) if apply_batch_normalization: self.head_batch_norm = nn.BatchNorm1d(embedding_dim) self.head_relation_batch_norm = nn.BatchNorm1d(embedding_dim) else: self.head_batch_norm = self.head_relation_batch_norm = None self.reset_parameters()
[docs] def reset_parameters(self): # noqa:D102 # instantiate here to make module easily serializable core_initializer = initializer_resolver.make(self.core_initializer, pos_kwargs=self.core_initializer_kwargs) core_initializer(self.core_tensor)
# batch norm gets reset automatically, since it defines reset_parameters def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: return dict( core_tensor=self.core_tensor, do_h=self.head_dropout, do_r=self.relation_dropout, do_hr=self.head_relation_dropout, bn_h=self.head_batch_norm, bn_hr=self.head_relation_batch_norm, )
[docs]class UMInteraction( NormBasedInteraction[torch.FloatTensor, None, torch.FloatTensor], ): """A stateful module for the UnstructuredModel interaction function. .. seealso:: :func:`pykeen.nn.functional.unstructured_model_interaction` """ # shapes relation_shape: Sequence[str] = tuple() func = pkf.um_interaction def __init__(self, p: int, power_norm: bool = True): super().__init__(p=p, power_norm=power_norm) @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h, t=t)
[docs]class TorusEInteraction(NormBasedInteraction[torch.FloatTensor, torch.FloatTensor, torch.FloatTensor]): """A stateful module for the TorusE interaction function. .. seealso:: :func:`pykeen.nn.functional.toruse_interaction` """ func = pkf.toruse_interaction def __init__(self, p: int = 2, power_norm: bool = False): super().__init__(p=p, power_norm=power_norm)
[docs]class TransDInteraction( NormBasedInteraction[ Tuple[torch.FloatTensor, torch.FloatTensor], Tuple[torch.FloatTensor, torch.FloatTensor], Tuple[torch.FloatTensor, torch.FloatTensor], ], ): """A stateful module for the TransD interaction function. .. seealso:: :func:`pykeen.nn.functional.transd_interaction` """ entity_shape = ("d", "d") relation_shape = ("e", "e") func = pkf.transd_interaction def __init__(self, p: int = 2, power_norm: bool = True): super().__init__(p=p, power_norm=power_norm) @staticmethod def _prepare_hrt_for_functional( h: Tuple[torch.FloatTensor, torch.FloatTensor], r: Tuple[torch.FloatTensor, torch.FloatTensor], t: Tuple[torch.FloatTensor, torch.FloatTensor], ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 h, h_p = h r, r_p = r t, t_p = t return dict(h=h, r=r, t=t, h_p=h_p, r_p=r_p, t_p=t_p)
[docs]class NTNInteraction( FunctionalInteraction[ torch.FloatTensor, Tuple[torch.FloatTensor, torch.FloatTensor, torch.FloatTensor, torch.FloatTensor, torch.FloatTensor], torch.FloatTensor, ], ): """A stateful module for the NTN interaction function. .. seealso:: :func:`pykeen.nn.functional.ntn_interaction` """ relation_shape = ("kdd", "kd", "kd", "k", "k") func = pkf.ntn_interaction def __init__( self, activation: HintOrType[nn.Module] = None, activation_kwargs: Optional[Mapping[str, Any]] = None, ): """Initialize NTN with the given non-linear activation function. :param activation: A non-linear activation function. Defaults to the hyperbolic tangent :class:`torch.nn.Tanh` if none, otherwise uses the :data:`pykeen.utils.activation_resolver` for lookup. :param activation_kwargs: If the ``activation`` is passed as a class, these keyword arguments are used during its instantiation. """ super().__init__() if activation is None: self.non_linearity = nn.Tanh() else: self.non_linearity = activation_resolver.make(activation, activation_kwargs) @staticmethod def _prepare_hrt_for_functional( h: torch.FloatTensor, r: Tuple[torch.FloatTensor, torch.FloatTensor, torch.FloatTensor, torch.FloatTensor, torch.FloatTensor], t: torch.FloatTensor, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 w, vh, vt, b, u = r return dict(h=h, t=t, w=w, b=b, u=u, vh=vh, vt=vt) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict(activation=self.non_linearity)
[docs]class KG2EInteraction( FunctionalInteraction[ Tuple[torch.FloatTensor, torch.FloatTensor], Tuple[torch.FloatTensor, torch.FloatTensor], Tuple[torch.FloatTensor, torch.FloatTensor], ], ): """A stateful module for the KG2E interaction function. .. seealso:: :func:`pykeen.nn.functional.kg2e_interaction` """ entity_shape = ("d", "d") relation_shape = ("d", "d") similarity: str exact: bool func = pkf.kg2e_interaction def __init__(self, similarity: Optional[str] = None, exact: bool = True): super().__init__() if similarity is None: similarity = "KL" self.similarity = similarity self.exact = exact @staticmethod def _prepare_hrt_for_functional( h: Tuple[torch.FloatTensor, torch.FloatTensor], r: Tuple[torch.FloatTensor, torch.FloatTensor], t: Tuple[torch.FloatTensor, torch.FloatTensor], ) -> MutableMapping[str, torch.FloatTensor]: h_mean, h_var = h r_mean, r_var = r t_mean, t_var = t return dict( h_mean=h_mean, h_var=h_var, r_mean=r_mean, r_var=r_var, t_mean=t_mean, t_var=t_var, ) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: return dict( similarity=self.similarity, exact=self.exact, )
[docs]class TransHInteraction(NormBasedInteraction[FloatTensor, Tuple[FloatTensor, FloatTensor], FloatTensor]): """A stateful module for the TransH interaction function. .. seealso:: :func:`pykeen.nn.functional.transh_interaction` """ relation_shape = ("d", "d") func = pkf.transh_interaction @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h, w_r=r[0], d_r=r[1], t=t)
[docs]class MuREInteraction( NormBasedInteraction[ Tuple[FloatTensor, FloatTensor, FloatTensor], Tuple[FloatTensor, FloatTensor], Tuple[FloatTensor, FloatTensor, FloatTensor], ], ): """A stateful module for the MuRE interaction function from [balazevic2019b]_. .. seealso:: :func:`pykeen.nn.functional.mure_interaction` """ # there are separate biases for entities in head and tail position entity_shape = ("d", "", "") relation_shape = ("d", "d") func = pkf.mure_interaction @staticmethod def _prepare_hrt_for_functional( h: Tuple[FloatTensor, FloatTensor, FloatTensor], r: Tuple[FloatTensor, FloatTensor], t: Tuple[FloatTensor, FloatTensor, FloatTensor], ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 h, b_h, _ = h t, _, b_t = t r_vec, r_mat = r return dict(h=h, b_h=b_h, r_vec=r_vec, r_mat=r_mat, t=t, b_t=b_t)
[docs]class SimplEInteraction( FunctionalInteraction[ Tuple[torch.FloatTensor, torch.FloatTensor], Tuple[torch.FloatTensor, torch.FloatTensor], Tuple[torch.FloatTensor, torch.FloatTensor], ], ): """A module wrapper for the SimplE interaction function. .. seealso:: :func:`pykeen.nn.functional.simple_interaction` """ func = pkf.simple_interaction entity_shape = ("d", "d") relation_shape = ("d", "d") def __init__(self, clamp_score: Union[None, float, Tuple[float, float]] = None): super().__init__() if isinstance(clamp_score, float): clamp_score = (-clamp_score, clamp_score) self.clamp_score = clamp_score def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict(clamp=self.clamp_score) @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h[0], h_inv=h[1], r=r[0], r_inv=r[1], t=t[0], t_inv=t[1])
[docs]class PairREInteraction(NormBasedInteraction[FloatTensor, Tuple[FloatTensor, FloatTensor], FloatTensor]): """A stateful module for the PairRE interaction function. .. seealso:: :func:`pykeen.nn.functional.pair_re_interaction` """ relation_shape = ("d", "d") func = pkf.pair_re_interaction @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 return dict(h=h, r_h=r[0], r_t=r[1], t=t)
class QuatEInteraction( FunctionalInteraction[ torch.FloatTensor, torch.FloatTensor, torch.FloatTensor, ], ): """A module wrapper for the QuatE interaction function. .. seealso:: :func:`pykeen.nn.functional.quat_e_interaction` """ func = pkf.quat_e_interaction
[docs]class MonotonicAffineTransformationInteraction( Interaction[ HeadRepresentation, RelationRepresentation, TailRepresentation, ], ): r""" An adapter of interaction functions which adds a scalar (trainable) monotonic affine transformation of the score. .. math :: score(h, r, t) = \alpha \cdot score'(h, r, t) + \beta This adapter is useful for losses such as BCE, where there is a fixed decision threshold, or margin-based losses, where the margin is not be treated as hyper-parameter, but rather a trainable parameter. This is particularly useful, if the value range of the score function is not known in advance, and thus choosing an appropriate margin becomes difficult. Monotonicity is required to preserve the ordering of the original scoring function, and thus ensures that more plausible triples are still more plausible after the transformation. For example, we can add a bias to a distance-based interaction function to enable positive values: >>> base = TransEInteraction(p=2) >>> interaction = MonotonicAffineTransformationInteraction(base=base, trainable_bias=True, trainable_scale=False) When combined with BCE loss, we can geometrically think about predicting a (soft) sphere at :math:`h + r` with radius equal to the bias of the transformation. When we add a trainable scale, the model can control the "softness" of the decision boundary itself. """ def __init__( self, base: Interaction[HeadRepresentation, RelationRepresentation, TailRepresentation], initial_bias: float = 0.0, trainable_bias: bool = True, initial_scale: float = 1.0, trainable_scale: bool = True, ): """ Initialize the interaction. :param base: The base interaction. :param initial_bias: The initial value for the bias. :param trainable_bias: Whether the bias should be trainable. :param initial_scale: >0 The initial value for the scale. Must be strictly positive. :param trainable_scale: Whether the scale should be trainable. """ super().__init__() # the base interaction self.base = base # forward entity/relation shapes self.entity_shape = base.entity_shape self.relation_shape = base.relation_shape self._tail_entity_shape = base._tail_entity_shape # The parameters of the affine transformation: bias self.bias = nn.Parameter(torch.empty(size=tuple()), requires_grad=trainable_bias) self.initial_bias = torch.as_tensor(data=[initial_bias], dtype=torch.get_default_dtype()).squeeze() # scale. We model this as log(scale) to ensure scale > 0, and thus monotonicity self.log_scale = nn.Parameter(torch.empty(size=tuple()), requires_grad=trainable_scale) self.initial_log_scale = torch.as_tensor( data=[math.log(initial_scale)], dtype=torch.get_default_dtype(), ).squeeze()
[docs] def reset_parameters(self): # noqa: D102 self.bias.data = self.initial_bias.to(device=self.bias.device) self.log_scale.data = self.initial_log_scale.to(device=self.bias.device)
[docs] def forward( self, h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> torch.FloatTensor: # noqa: D102 return self.log_scale.exp() * self.base(h=h, r=r, t=t) + self.bias
[docs]class CrossEInteraction(FunctionalInteraction[FloatTensor, Tuple[FloatTensor, FloatTensor], FloatTensor]): """A module wrapper for the CrossE interaction function. .. seealso:: :func:`pykeen.nn.functional.cross_e_interaction` """ func = pkf.cross_e_interaction relation_shape = ("d", "d") def __init__( self, embedding_dim: int = 50, combination_activation: HintOrType[nn.Module] = nn.Tanh, combination_activation_kwargs: Optional[Mapping[str, Any]] = None, combination_dropout: Optional[float] = 0.5, ): """ Instantiate the interaction module. :param embedding_dim: The embedding dimension. :param combination_activation: The combination activation function. :param combination_activation_kwargs: Additional keyword-based arguments passed to the constructor of the combination activation function (if not already instantiated). :param combination_dropout: An optional dropout applied to the combination. """ super().__init__() self.combination_activation = activation_resolver.make( combination_activation, pos_kwargs=combination_activation_kwargs, ) self.combination_bias = nn.Parameter(data=torch.zeros(embedding_dim)) self.combination_dropout = nn.Dropout(combination_dropout) if combination_dropout else None def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict( bias=self.combination_bias, activation=self.combination_activation, dropout=self.combination_dropout, ) @staticmethod def _prepare_hrt_for_functional( h: FloatTensor, r: Tuple[FloatTensor, FloatTensor], t: FloatTensor, ) -> MutableMapping[str, torch.FloatTensor]: # noqa: D102 r, c_r = r return dict(h=h, r=r, c_r=c_r, t=t)
[docs]class BoxEInteraction( NormBasedInteraction[ Tuple[FloatTensor, FloatTensor], Tuple[FloatTensor, FloatTensor, FloatTensor, FloatTensor, FloatTensor, FloatTensor], Tuple[FloatTensor, FloatTensor], ] ): """An implementation of the BoxE interaction from [abboud2020]_.""" func = pkf.boxe_interaction relation_shape = ("d", "d", "s", "d", "d", "s") # Boxes are 2xd (size) each, x 2 sets of boxes: head and tail entity_shape = ("d", "d") # Base position and bump def __init__(self, tanh_map: bool = True, p: int = 2, power_norm: bool = False): r""" Instantiate the interaction module. :param tanh_map: Should the hyperbolic tangent be applied to all representations prior to model scoring? :param p: the order of the norm :param power_norm: whether to use the p-th power of the norm instead """ super().__init__(p=p, power_norm=power_norm) self.tanh_map = tanh_map @staticmethod def _prepare_hrt_for_functional( h: Tuple[FloatTensor, FloatTensor], r: Tuple[FloatTensor, FloatTensor, FloatTensor, FloatTensor, FloatTensor, FloatTensor], t: Tuple[FloatTensor, FloatTensor], ) -> MutableMapping[str, torch.FloatTensor]: # noqa:D102 rh_base, rh_delta, rh_size, rt_base, rt_delta, rt_size = r h_pos, h_bump = h t_pos, t_bump = t return dict( # head position and bump h_pos=h_pos, h_bump=h_bump, # relation box: head rh_base=rh_base, rh_delta=rh_delta, rh_size=rh_size, # relation box: tail rt_base=rt_base, rt_delta=rt_delta, rt_size=rt_size, # tail position and bump t_pos=t_pos, t_bump=t_bump, ) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 state = super()._prepare_state_for_functional() state["tanh_map"] = self.tanh_map return state
class CPInteraction(FunctionalInteraction[FloatTensor, FloatTensor, FloatTensor]): """ An implementation of the CP interaction as described [lacroix2018]_ (originally from [hitchcock1927]_). .. note :: For $k=1$, this interaction is the same as DistMult (but consider the note below). .. note :: For equivalence to CP, entities should have different representations for head & tail role. This is different to DistMult. """ func = pkf.cp_interaction entity_shape = ("kd",) relation_shape = ("kd",) _head_indices = (0,) _tail_indices = (1,)
[docs]@parse_docdata class MultiLinearTuckerInteraction( FunctionalInteraction[Tuple[FloatTensor, FloatTensor], FloatTensor, Tuple[FloatTensor, FloatTensor]] ): """ An implementation of the original (multi-linear) TuckER interaction as described [tucker1966]_. .. note :: For small tensors, there are more efficient algorithms to compute the decomposition, e.g., http://tensorly.org/stable/modules/generated/tensorly.decomposition.Tucker.html --- name: MultiLinearTucker citation: author: Tucker year: 1966 link: https://dx.doi.org/10.1007/BF02289464 """ func = pkf.multilinear_tucker_interaction entity_shape = ("d", "f") relation_shape = ("e",) def __init__( self, head_dim: int = 64, relation_dim: Optional[int] = None, tail_dim: Optional[int] = None, ): """Initialize the Tucker interaction function. :param head_dim: The head entity embedding dimension. :param relation_dim: The relation embedding dimension. Defaults to `head_dim`. :param tail_dim: The tail entity embedding dimension. Defaults to `head_dim`. """ super().__init__() # input normalization relation_dim = relation_dim or head_dim tail_dim = tail_dim or head_dim # Core tensor self.core_tensor = nn.Parameter( torch.empty(head_dim, relation_dim, tail_dim), requires_grad=True, )
[docs] def reset_parameters(self): # noqa:D102 # initialize core tensor nn.init.normal_( self.core_tensor, mean=0, std=numpy.sqrt(numpy.prod(numpy.reciprocal(numpy.asarray(self.core_tensor.shape)))), )
@staticmethod def _prepare_hrt_for_functional( h: Tuple[FloatTensor, FloatTensor], r: FloatTensor, t: Tuple[FloatTensor, FloatTensor], ) -> MutableMapping[str, torch.FloatTensor]: return dict(h=h[0], r=r, t=t[1]) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: return dict(core_tensor=self.core_tensor)
[docs]@parse_docdata class TransformerInteraction(FunctionalInteraction[torch.FloatTensor, torch.FloatTensor, torch.FloatTensor]): """Transformer-based interaction, as described in [galkin2020]_. --- name: Transformer citation: author: Galkin year: 2020 link: https://doi.org/10.18653/v1/2020.emnlp-main.596 """ func = pkf.transformer_interaction def __init__( self, input_dim: int = 512, num_layers: int = 2, num_heads: int = 8, dropout: float = 0.1, dim_feedforward: int = 2048, position_initializer: HintOrType[Initializer] = xavier_normal_, ): """ Initialize the module. :param input_dim: >0 the input dimension :param num_layers: >0 the number of Transformer layers, cf. :class:`nn.TransformerEncoder`. :param num_heads: >0 the number of self-attention heads inside each transformer encoder layer, cf. :class:`nn.TransformerEncoderLayer` :param dropout: the dropout rate on each transformer encoder layer, cf. :class:`nn.TransformerEncoderLayer` :param dim_feedforward: the hidden dimension of the feed-forward layers of the transformer encoder layer, cf. :class:`nn.TransformerEncoderLayer` :param position_initializer: the initializer to use for positional embeddings """ super().__init__() self.transformer = nn.TransformerEncoder( encoder_layer=nn.TransformerEncoderLayer( d_model=input_dim, nhead=num_heads, dim_feedforward=dim_feedforward, dropout=dropout, ), num_layers=num_layers, ) self.position_embeddings = nn.Parameter(position_initializer(torch.empty(2, input_dim))) self.final = nn.Linear(input_dim, input_dim, bias=True) def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 return dict( transformer=self.transformer, position_embeddings=self.position_embeddings, final=self.final, )
[docs]@parse_docdata class TripleREInteraction( NormBasedInteraction[ FloatTensor, Tuple[FloatTensor, FloatTensor, FloatTensor], FloatTensor, ] ): """A stateful module for the TripleRE interaction function from [yu2021]_. .. seealso:: :func:`pykeen.nn.functional.triple_re_interaction` .. seealso:: https://github.com/LongYu-360/TripleRE-Add-NodePiece --- name: TripleRE citation: author: Yu year: 2021 link: https://vixra.org/abs/2112.0095 """ # r_head, r_mid, r_tail relation_shape = ("d", "d", "d") func = pkf.triple_re_interaction def __init__(self, u: Optional[float] = 1.0, p: int = 1, power_norm: bool = False): """ Initialize the module. :param u: the relation factor offset. can be set to None to disable it. :param p: The norm used with :func:`torch.linalg.vector_norm`. Defaults to 1 for TripleRE. :param power_norm: Whether to use the p-th power of the $L_p$ norm. It has the advantage of being differentiable around 0, and numerically more stable. Defaults to False for TripleRE. """ super().__init__(p=p, power_norm=power_norm) self.u = u def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: # noqa: D102 kwargs = super()._prepare_state_for_functional() kwargs["u"] = self.u return kwargs @staticmethod def _prepare_hrt_for_functional( h: FloatTensor, r: Tuple[FloatTensor, FloatTensor, FloatTensor], t: FloatTensor, ) -> MutableMapping[str, FloatTensor]: # noqa: D102 r_head, r_mid, r_tail = r return dict( h=h, r_head=r_head, r_mid=r_mid, r_tail=r_tail, t=t, )
[docs]class AutoSFInteraction(FunctionalInteraction[HeadRepresentation, RelationRepresentation, TailRepresentation]): """An implementation of the AutoSF interaction as described by [zhang2020]_.""" func = pkf.auto_sf_interaction coefficients: Tuple[Tuple[int, int, int, Sign], ...] def __init__(self, coefficients: Sequence[Tuple[int, int, int, Sign]]) -> None: """ Initialize the interaction function. :param coefficients: the coefficients, in order: 1. head_representation_index, 2. relation_representation_index, 3. tail_representation_index, 4. sign :raises ValueError: if there are duplicate coefficients """ super().__init__() counter = Counter((hi, ri, ti) for hi, ri, ti, _ in coefficients) duplicates = {k for k, v in counter.items() if v > 1} if duplicates: raise ValueError(f"Cannot have duplicates in coefficients! Duplicate entries for {duplicates}") self.coefficients = tuple(coefficients) num_entity_representations = 1 + max( itt.chain.from_iterable((map(itemgetter(i), coefficients) for i in (0, 2))) ) num_relation_representations = 1 + max(map(itemgetter(1), coefficients)) self.entity_shape = tuple(["d"] * num_entity_representations) self.relation_shape = tuple(["d"] * num_relation_representations)
[docs] @classmethod def from_searched_sf(cls, coefficients: Sequence[int]) -> "AutoSFInteraction": """ Instantiate AutoSF interaction from the "official" serialization format. > The first 4 values (a,b,c,d) represent h_1 * r_1 * t_a + h_2 * r_2 * t_b + h_3 * r_3 * t_c + h_4 * r_4 * t_d. > For the others, every 4 values represent one adding block: index of r, index of h, index of t, the sign s. :param coefficients: the coefficients in the "official" serialization format. :returns: An AutoSF interaction module .. seealso:: https://github.com/AutoML-Research/AutoSF/blob/07b7243ccf15e579176943c47d6e65392cd57af3/searched_SFs.txt """ return cls( coefficients=[(i, ri, i, 1) for i, ri in enumerate(coefficients[:4])] + [(hi, ri, ti, s) for ri, hi, ti, s in more_itertools.chunked(coefficients[4:], 4)] )
def _prepare_state_for_functional(self) -> MutableMapping[str, Any]: return dict(coefficients=self.coefficients) @staticmethod def _prepare_hrt_for_functional( h: HeadRepresentation, r: RelationRepresentation, t: TailRepresentation, ) -> MutableMapping[str, torch.FloatTensor]: return dict(zip("hrt", ensure_tuple(h, r, t)))
[docs] def extend(self, *new_coefficients: Tuple[int, int, int, Sign]) -> "AutoSFInteraction": """Extend AutoSF function, as described in the greedy search algorithm in the paper.""" return AutoSFInteraction(coefficients=self.coefficients + tuple(new_coefficients))
[docs] def latex_visualize(self) -> str: """Create the LaTeX + tikz visualization as shown in the paper.""" n = len(self.entity_shape) return "\n".join( [ r"\begin{tikzpicture}[yscale=-1]", rf"\draw (0, 0) grid ({n}, {n});", ] + [ rf"\draw ({ti}.5, {hi}.5) node {{${'-' if s < 0 else ''}D^r_{{{ri + 1}}}$}};" for hi, ri, ti, s in self.coefficients ] + [ r"\end{tikzpicture}", ], )
interaction_resolver: ClassResolver[Interaction] = ClassResolver.from_subclasses( Interaction, # type: ignore skip={NormBasedInteraction, FunctionalInteraction, MonotonicAffineTransformationInteraction}, suffix=Interaction.__name__, )