We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nan
rbf
For parameters: grid_H=None, group_kernel_size=4, this will return a group_sampling_width=0 which will in turn make rbf return a tensor of nan's.
grid_H=None
group_kernel_size=4
group_sampling_width=0
gconv/gconv/gnn/kernels/kernel_sen/kernel_se2.py
Lines 233 to 239 in 4879da6
Use group_sampling_mode='nearest'.
group_sampling_mode='nearest'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproduction
For parameters:
grid_H=None
,group_kernel_size=4
, this will return agroup_sampling_width=0
which will in turn make rbf return a tensor of nan's.gconv/gconv/gnn/kernels/kernel_sen/kernel_se2.py
Lines 233 to 239 in 4879da6
Temporary fix
Use
group_sampling_mode='nearest'
.The text was updated successfully, but these errors were encountered: