-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于点信息矩阵X三部分:点结构标签、点嵌入、点属性 问题 #59
Comments
文中没有提到loss function和如何训练,具体是怎么训练的呢? |
1) 点嵌入就是用network embedding方法,例如DeepWalk/Node2vec/LINE,从网络结构中算出的节点向量表示。点属性是节点的原始特征,如电影的类型、用户的性别、年龄、爱好等。两者是不一样的。 |
具体loss function和训练过程请参照图分类部分的pytorch_DGCNN代码。 |
尊敬的张博士:
您好!
这篇论文我仔细研读了,但还有些具体地方没有弄明白,所以来请教。
问题1:点嵌入、点属性具体是指是什么?我查了一下资料,我的理解就是图中节点的向量表示,这里不知道是不是,节点属性是 度 吗
问题2:信息矩阵X的构建,论文说是向量连接起来,具体是怎么连接的呢?可以用图的方式说明一下吗?或者就以矩阵表示,信息矩阵X每行代表什么,每列代表什么?
问题3:f(A,X),(A,X)是不是这两个矩阵的拼接作为输入,最后的输出结果是带标签的0或者1,以表示中心节点对(x,y)是否存在链接?
The text was updated successfully, but these errors were encountered: