-
Notifications
You must be signed in to change notification settings - Fork 275
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
【Hackathon 6th Article No.6】稀疏计算的使用指南 #878
Conversation
@zhwesky2010 请问研发老师可以帮忙 review 一下嘛 |
@zhwesky2010 请问研发老师还有时间帮忙 review 吗,15 号是不是就截至了 😭 |
|
||
### 1.1 稀疏格式介绍 | ||
|
||
稀疏矩阵是一种特殊的矩阵,其中绝大多数元素为0。与密集矩阵相比,稀疏矩阵可以节省大量存储空间,并提高计算效率。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
统一下中文标点符号 ,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
统一下中文标点符号
,
done
|
||
### 4.2 图神经网络 | ||
|
||
基于图神经网络的稀疏计算是一种处理非欧几里得结构化数据的有效方法。在这种情况下,数据可以表示为一个图,其中节点表示实体,边缘表示它们之间的关系。图神经网络能够学习节点表示,同时捕获图结构的拓扑信息和节点属性。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a.py改一个更规范的名字,然后以链接的形式加到这个里面来
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a.py改一个更规范的名字,然后以链接的形式加到这个里面来
这个 a.py 是忘了删掉了,我删掉一下,代码已经都在文章里面写了
rfcs/Article/a.py
Outdated
model = GCN() | ||
|
||
# 前向传播 | ||
logits = model(node_feat, adj) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zhwesky2010 请问还有其他review意见嘛 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.