-
Notifications
You must be signed in to change notification settings - Fork 113
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
请教一些问题 #73
Comments
Hi @Jerryme-xxm, Those are excellent questions.
Hope it helps! |
1,Hello, I've written a simple attention mechanism that mimics gacnet, as follows: def attget(input_vertex_features, input_vertex_coordinates, edges, k = None): Then I add it to gnn.py as follows:
Is there anything wrong in my code? My pc can run your original code with bs = 1, and when i add my attention mechanism to it, I don't have enough GPU(1660ti @6g) resources. Thus is there ang method to help? 2,In GACnet and GAT, the feature dims both reduce to lower dims, so their attention mechanisms have a dimension reduction process, but point-gnn`s feature dim doesn't reduce.Do you have any advice? |
Hi @Jerryme-xxm,
So your attget code use this function instead of softmax:
I did not test the code. Please let me know if I misunderstand your intention or the paper. As for the memory limitation, you can try to cut the graph into smaller pieces and process them one by one. But one 1660ti is indeed limiting.
Hope it helps. Thanks, |
Thanks for your kindly help sincerely! |
Hello, may I ask how you managed to train the network with only a piece of 2080? I really need your help. Could you please tell me? |
Sorry, I don't remember very clearly. At that time, I seemed to set the batchsize to 1 and complete the training in two days. |
作者您好,我最近在尝试对您的PointGnn做一些改动。但是由于我的水平有限,不知道这些改动是否可行,有一些问题想要问您:
1、为什么您选用体素采样这种计算量较大的采样方法,是否有其他方法可以替代,如FPS最远点采样?
2、如果对图顶点的邻点按照该点密度/距离加入权重,是否会对训练结果产生好的影响。比如:顶点为P,邻点A有3个采样点,与P点的距离为5;邻点B有5个采样点,与P点的距离为3,是否可以对B点加入一个比A点更高的权重?
3、这种网络利用局部特征进行检测,是否可以加入全局特征来提高准确率?考虑到这必然会加大计算量,最后考虑这个改动方向。
The text was updated successfully, but these errors were encountered: