Results 39 comments of Zhe Chen

Thanks! Good to know you are considering that.

@veeableful Thanks for your investigation. I want MSVC support because MSVC toolchain is used by most Windows programmers, and being able to use `go-sdl2` without extra installation will be a...

IIRC, in the current implementation, voice is trigged based on the keyword that is being typed. It would be great if the keyword list can be provided separately per the...

@SaekiRaku Thanks for your reply! Yeah, that's what we're hoping for. For one, using a separate keyword list could greatly ease the maintenance. Moreover, that might help resolve ambiguities between...

@SaekiRaku True, that's indeed a problem. I don't have much knowledge about how the voice package is structured, though. I'm wondering if it's possible to bundle the configuration file with...

Can we make `knn_graph` output pair-wise distances except for the edge_index to avoid duplicate computation? Probably, we can add a `return_distances=False` parameter following the convention of `numpy.unique`.

@rusty1s Thanks for your reply. I am not quite familiar with the codebase of `pytorch_cluster`. I will see if I can help this weekend.

Hi @rusty1s, I tried rewriting the signature of `knn` as follows ```python @torch.jit.script def knn( x: torch.Tensor, y: torch.Tensor, k: int, batch_x: Optional[torch.Tensor] = None, batch_y: Optional[torch.Tensor] = None, cosine:...

Hi @johguenther, Thanks for your prompt reply! I am sorry that I am fully occupied with my work and cannot dig into this problem. Here is the snippet I used...