当前位置:网站首页>TEC: Knowledge Graph Embedding with Triple Context
TEC: Knowledge Graph Embedding with Triple Context
2022-07-01 03:16:00 【Re:fused】
TEC:Knowledge Graph Embedding with Triple Context
1 问题
知识图谱没有充分利用上,丰富的信息,利用其周围信息和路径信息,基于以上信息进行知识知识图谱补全。
2 模型
context 信息包括:neighbor context和path context。
2.1 Context详细信息
- Neighbor Context
对于其Neighbor Context只进行出度的计算, C N ( h ) = ( r 4 , e 1 ) , ( r 3 , e 2 ) , ( r 2 , e 3 ) , ( r 1 , e 8 ) , ( r 1 , e 1 0 ) CN (h) = {(r_4, e_1), (r_3, e_2), (r_2, e_3), (r_1, e_8), (r_1, e_10)} CN(h)=(r4,e1),(r3,e2),(r2,e3),(r1,e8),(r1,e10) - Path Context
对于Path Context, C P ( h , t ) = ( r 1 , r 2 ) , ( r 2 , r 1 , r 2 ) . CP (h,t) = {(r_1,r_2), (r_2,r_1,r_2)}. CP(h,t)=(r1,r2),(r2,r1,r2).,只保存h和t之间的关系。
C ( h , r , t ) = C N ( h ) ∪ C P ( h , t ) C(h,r,t) = CN (h) ∪CP (h,t) C(h,r,t)=CN(h)∪CP(h,t)
2.2 打分函数

最大化可能性:
其可以写成以下形式:







通过以上式子进行训练,消耗资源,因此进行训练时采用负采样的形式进行训练
其他两种类似。
边栏推荐
- Redis efficient like and cancel function
- Depth first traversal of C implementation Diagram -- non recursive code
- shell脚本使用两个横杠接收外部参数
- Pyramid Scene Parsing Network【PSPNet】论文阅读
- 网页不能右键 F12 查看源代码解决方案
- Feign remote call and getaway gateway
- Introduction to the core functions of webrtc -- an article to understand peerconnectionfactoryinterface rtcconfiguration peerconnectioninterface
- Redis高效点赞与取消功能
- Hal library setting STM32 interrupt
- 别再说不会解决 “跨域“ 问题啦
猜你喜欢
随机推荐
数据库DDL(Data Definition Language,数据定义语言)知识点
Learning notes for introduction to C language multithreaded programming
衡量两个向量相似度的方法:余弦相似度、pytorch 求余弦相似度:torch.nn.CosineSimilarity(dim=1, eps=1e-08)
Force buckle - sum of two numbers
别再说不会解决 “跨域“ 问题啦
Subnet division (10)
力扣-两数之和
Server rendering technology JSP
Mysql知识点
Hello World generation
Pyramid Scene Parsing Network【PSPNet】论文阅读
EtherCAT简介
Hal library setting STM32 interrupt
How do I use Google Chrome 11's Upload Folder feature in my own code?
雪崩问题以及sentinel的使用
Depth first traversal of C implementation Diagram -- non recursive code
实战 ELK 优雅管理服务器日志
几行事务代码,让我赔了16万
Redis 教程
Avalanche problem and the use of sentinel









