n3net
n3net copied to clipboard
Neural Nearest Neighbors Networks (NIPS*2018)
I can't install pyinn, could you please tell me what is wrong?: (n3net) C:\Users\lenovo>pip install pyinn ERROR: Could not find a version that satisfies the requirement pyinn (from versions: none)...
``` >>> import matmul_cuda Traceback (most recent call last): File "", line 1, in ImportError: libcudart.so.9.0: cannot open shared object file: No such file or directory >>> ``` Environment I...
Thanks for your impressive work! But I have a problem about testing on dnd. In "main_pg.py" the input has 3 channels and the output has 1 channels, I want to...
when I run this code "python setup.py install " in lib file. it successfully install matmul_cuda, but when I run 'import matmul_cuda' in terminal, it raise an error, like this:...
a few fixes to make code run for pytorch 1.4
In your paper, you have reported the data of denoised result of dnd srgb images. But I can only find mode "raw" and "raw_full" in function evalate_dnd of file main_pg.py....
I'm trying to evaluate NNN against conventional KNN on a simple test case. The test case is to find the 5 nearest neighbour for a permutation of indices (for easy...
The current euclidean distance calculation produces non-symmetric distance matrices. I suspect this is a numeric issue (although it persists even when using float64): ```python out = -2 * torch.matmul(x, y)...
Thank you for your excellent work! Your idea is innovative to me, and your code is well-structured. However, on reviewing your code, I have some suggestions that potentially improve your...