Michaël Defferrard

Results 107 comments of Michaël Defferrard

Thanks for the inputs. I agree with both of you that the stable and in-development versions shouldn't have the same version number. That was a mistake on my side, I'll...

There are plans, but as you can imagine, they are slipping... We are still committed to develop and maintain the package. Our idea would be to first merge some long-standing...

And there's pip magic for this issue too: `pip install --ignore-installed git+https://github.com/epfl-lts2/pygsp`. 😉

In a `requirements.txt` you'd better pin to a commit (future updates to master will otherwise break your code). You can do it with: ``` numpy==1.20.0 scipy==1.6.0 git+https://github.com/epfl-lts2/pygsp.git@70f47eaf5d4b521f3247c4f5f10e7df1f39b2b47 ```

Thanks for merging the knn and radius matrix build :+1:

Thanks @bricaud :) There's actually a whole lot of libraries, see e.g. [this benchmark](https://github.com/yurymalkov/ann-benchmarks). We currently support the following backends (thanks to @naspert work): * scipy [pdist](https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.distance.pdist.html) (brute force), [KDTree](https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.spatial.KDTree.html)...

Test fails because scikit-image replaced their camera(man) image from version 0.17.0 (used with python 3.6) to 0.18.0 (used with python 3.7-3.9). Refs: https://github.com/scikit-image/scikit-image/issues/3927, https://github.com/scikit-image/scikit-image/pull/4913, https://github.com/scikit-image/scikit-image/pull/4914. We can either use another...

Thanks for your suggestion @stanleyjs. I agree with your point, and in general graphs might even be embedded in more that 3D. Then, is it better to: 1. have a...

I hear your arguments. If we can have a nice implementation and not a hack that'll add to our technical debt I'd be willing to accept a PR. I think...

Yes please do base your work on the [semi-supervised-learning](https://github.com/epfl-lts2/pygsp/tree/semi-supervised-learning) branch. It should be merged in #19 once some cleanup is done (I don't have time for it now though). Maybe...