|
|
@@ -92,3 +92,26 @@ class BilinearDecoder(torch.nn.Module): |
|
|
|
rec = torch.mm(intermediate_product, torch.transpose(inputs_col, 0, 1))
|
|
|
|
outputs.append(self.activation(rec))
|
|
|
|
return outputs
|
|
|
|
|
|
|
|
|
|
|
|
class InnerProductDecoder(torch.nn.Module):
|
|
|
|
"""DEDICOM Tensor Factorization Decoder model layer for link prediction."""
|
|
|
|
def __init__(self, input_dim, num_relation_types, drop_prob=0.,
|
|
|
|
activation=torch.sigmoid, **kwargs):
|
|
|
|
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
self.input_dim = input_dim
|
|
|
|
self.num_relation_types = num_relation_types
|
|
|
|
self.drop_prob = drop_prob
|
|
|
|
self.activation = activation
|
|
|
|
|
|
|
|
|
|
|
|
def forward(self, inputs_row, inputs_col):
|
|
|
|
outputs = []
|
|
|
|
for k in range(self.num_relation_types):
|
|
|
|
inputs_row = dropout(inputs_row, 1.-self.drop_prob)
|
|
|
|
inputs_col = dropout(inputs_col, 1.-self.drop_prob)
|
|
|
|
|
|
|
|
rec = torch.mm(inputs_row, torch.transpose(inputs_col, 0, 1))
|
|
|
|
outputs.append(self.activation(rec))
|
|
|
|
return outputs
|