当前位置:   article > 正文

知识图谱 - TransE算法_transe distance_norm

transe distance_norm

论文

Translating Embeddings for Modeling Multi-relational Data

TransE

算法概览

在这里插入图片描述

核心思想

实体向量 + 关系向量 = 实体向量 (h+l = t)

Tips

  • 关系向量 (l)需要归一化,避免训练时带来实体向量的尺度变化
  • 正样本 - 即原有样本,公式中的d(h+l, t)
  • 负样本 - 随机替换h或者l, 不同时替换,即为负样本, 公式中的d(h’+l, t’)
  • 距离采用l1 norm 或者l2 norm
  • 训练方式采用SGD训练法

参考代码

https://github.com/wuxiyu/transE/blob/master/tranE.py
关键代码片段

def update(self, Tbatch):
        copyEntityList = deepcopy(self.entityList)
        copyRelationList = deepcopy(self.relationList)
        
        for tripletWithCorruptedTriplet in Tbatch:
            headEntityVector = copyEntityList[tripletWithCorruptedTriplet[0][0]]#tripletWithCorruptedTriplet是原三元组和打碎的三元组的元组tuple
            tailEntityVector = copyEntityList[tripletWithCorruptedTriplet[0][1]]
            relationVector = copyRelationList[tripletWithCorruptedTriplet[0][2]]
            headEntityVectorWithCorruptedTriplet = copyEntityList[tripletWithCorruptedT
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/549500
推荐阅读
相关标签
  

闽ICP备14008679号