Shortcuts

unike.module.model.Analogy 源代码

# coding:utf-8
#
# unike/module/model/Analogy.py
# 
# git pull from OpenKE-PyTorch by LuYF-Lemon-love <luyanfeng_nlp@qq.com> on May 7, 2023
# updated by LuYF-Lemon-love <luyanfeng_nlp@qq.com> on Jan 31, 2024
# 
# 该头文件定义了 Analogy.

"""
Analogy 类 - DistMult、HolE 和 ComplEx 的集大成者,效果与 HolE、ComplEx 差不多。
"""

import torch
import typing
import torch.nn as nn
from .Model import Model
from typing_extensions import override

[文档]class Analogy(Model): """ ``Analogy`` :cite:`ANALOGY` 提出于 2017 年,:py:class:`unike.module.model.DistMult`、:py:class:`unike.module.model.HolE` 和 :py:class:`unike.module.model.ComplEx` 的集大成者, 效果与 :py:class:`unike.module.model.HolE`、:py:class:`unike.module.model.ComplEx` 差不多。 评分函数为: .. math:: <\operatorname{Re}(\mathbf{h_c}),\operatorname{Re}(\mathbf{r_c}),\operatorname{Re}(\mathbf{t_c})> +<\operatorname{Re}(\mathbf{h_c}),\operatorname{Im}(\mathbf{r_c}),\operatorname{Im}(\mathbf{t_c})> +<\operatorname{Im}(\mathbf{h_c}),\operatorname{Re}(\mathbf{r_c}),\operatorname{Im}(\mathbf{t_c})> -<\operatorname{Im}(\mathbf{h_c}),\operatorname{Im}(\mathbf{r_c}),\operatorname{Re}(\mathbf{t_c})> +<\mathbf{h_d}, \mathbf{r_d}, \mathbf{t_d}> 评分函数为 :py:class:`unike.module.model.DistMult` 和 :py:class:`unike.module.model.ComplEx` 两者评分函数的和。:math:`< \mathbf{a}, \mathbf{b}, \mathbf{c} >` 为逐元素多线性点积(element-wise multi-linear dot product), 正三元组的评分函数的值越大越好,负三元组越小越好,如果想获得更详细的信息请访问 :ref:`ANALOGY <analogy>`。 例子:: from unike.config import Trainer, Tester from unike.module.model import Analogy from unike.module.loss import SoftplusLoss from unike.module.strategy import NegativeSampling # define the model analogy = Analogy( ent_tol = train_dataloader.get_ent_tol(), rel_tol = train_dataloader.get_rel_tol(), dim = 200 ) # define the loss function model = NegativeSampling( model = analogy, loss = SoftplusLoss(), batch_size = train_dataloader.get_batch_size(), regul_rate = 1.0 ) # test the model tester = Tester(model = analogy, data_loader = test_dataloader, use_gpu = True, device = 'cuda:1') # train the model trainer = Trainer(model = model, data_loader = train_dataloader, epochs = 2000, lr = 0.5, opt_method = "adagrad", use_gpu = True, device = 'cuda:1', tester = tester, test = True, valid_interval = 100, log_interval = 100, save_interval = 100, save_path = '../../checkpoint/analogy.pth', delta = 0.01) trainer.run() """
[文档] def __init__( self, ent_tol: int, rel_tol: int, dim: int = 100): """创建 Analogy 对象。 :param ent_tol: 实体的个数 :type ent_tol: int :param rel_tol: 关系的个数 :type rel_tol: int :param dim: 实体嵌入向量和关系嵌入向量的维度 :type dim: int """ super(Analogy, self).__init__(ent_tol, rel_tol) #: 实体嵌入向量和关系嵌入向量的维度 self.dim: int = dim #: 根据实体个数,创建的实体嵌入 self.ent_embeddings: torch.nn.Embedding = nn.Embedding(self.ent_tol, self.dim * 4) #: 根据关系个数,创建的关系嵌入 self.rel_embeddings: torch.nn.Embedding = nn.Embedding(self.rel_tol, self.dim * 4) nn.init.xavier_uniform_(self.ent_embeddings.weight.data) nn.init.xavier_uniform_(self.rel_embeddings.weight.data)
[文档] @override def forward( self, triples: torch.Tensor, negs: torch.Tensor = None, mode: str = 'single') -> torch.Tensor: """ 定义每次调用时执行的计算。 :py:class:`torch.nn.Module` 子类必须重写 :py:meth:`torch.nn.Module.forward`。 :param triples: 正确的三元组 :type triples: torch.Tensor :param negs: 负三元组类别 :type negs: torch.Tensor :param mode: 模式 :type triples: str :returns: 三元组的得分 :rtype: torch.Tensor """ head_emb, relation_emb, tail_emb = self.tri2emb(triples, negs, mode) score = self._calc(head_emb, relation_emb, tail_emb) return score
[文档] def _calc( self, head_emb: torch.Tensor, relation_emb: torch.Tensor, tail_emb: torch.Tensor) -> torch.Tensor: """计算 Analogy 的评分函数。 :param head_emb: 头实体的向量。 :type head_emb: torch.Tensor :param relation_emb: 关系的向量。 :type relation_emb: torch.Tensor :param tail_emb: 尾实体的向量。 :type tail_emb: torch.Tensor :returns: 三元组的得分 :rtype: torch.Tensor """ head, h = torch.chunk(head_emb, 2, dim=-1) h_re, h_im = torch.chunk(head, 2, dim=-1) relation, r = torch.chunk(relation_emb, 2, dim=-1) r_re, r_im = torch.chunk(relation, 2, dim=-1) tail, t = torch.chunk(tail_emb, 2, dim=-1) t_re, t_im = torch.chunk(tail, 2, dim=-1) return (torch.sum(r_re * h_re * t_re + r_re * h_im * t_im + r_im * h_re * t_im - r_im * h_im * t_re, -1) + torch.sum(h * t * r, -1))
[文档] @override def predict( self, data: dict[str, typing.Union[torch.Tensor,str]], mode) -> torch.Tensor: """Analogy 的推理方法。 :param data: 数据。 :type data: dict[str, typing.Union[torch.Tensor,str]] :returns: 三元组的得分 :rtype: torch.Tensor """ triples = data["positive_sample"] head_emb, relation_emb, tail_emb = self.tri2emb(triples, mode=mode) score = self._calc(head_emb, relation_emb, tail_emb) return score
[文档] def regularization( self, data: dict[str, typing.Union[torch.Tensor, str]]) -> torch.Tensor: """L2 正则化函数(又称权重衰减),在损失函数中用到。 :param data: 数据。 :type data: dict[str, typing.Union[torch.Tensor, str]] :returns: 模型参数的正则损失 :rtype: torch.Tensor """ pos_sample = data["positive_sample"] neg_sample = data["negative_sample"] mode = data["mode"] pos_head_emb, pos_relation_emb, pos_tail_emb = self.tri2emb(pos_sample) if mode == "bern": neg_head_emb, neg_relation_emb, neg_tail_emb = self.tri2emb(neg_sample) else: neg_head_emb, neg_relation_emb, neg_tail_emb = self.tri2emb(pos_sample, neg_sample, mode) pos_regul = (torch.mean(pos_head_emb ** 2) + torch.mean(pos_relation_emb ** 2) + torch.mean(pos_tail_emb ** 2)) / 3 neg_regul = (torch.mean(neg_head_emb ** 2) + torch.mean(neg_relation_emb ** 2) + torch.mean(neg_tail_emb ** 2)) / 3 regul = (pos_regul + neg_regul) / 2 return regul
[文档]def get_analogy_hpo_config() -> dict[str, dict[str, typing.Any]]: """返回 :py:class:`Analogy` 的默认超参数优化配置。 默认配置为:: parameters_dict = { 'model': { 'value': 'Analogy' }, 'dim': { 'values': [50, 100, 200] } } :returns: :py:class:`Analogy` 的默认超参数优化配置 :rtype: dict[str, dict[str, typing.Any]] """ parameters_dict = { 'model': { 'value': 'Analogy' }, 'dim': { 'values': [50, 100, 200] } } return parameters_dict

Docs

Access comprehensive developer documentation for UniKE

View Docs