Michaël Defferrard

Results 107 comments of Michaël Defferrard

`hostname.local` do resolve for me.Thanks for MPDroid! Hopefully we'll have multi-server and zeroconf one day. ;)

Applications are plenty indeed. It has been used for traffic forecasting, biology (where molecules are modeled as graphs), chemistry, neuroscience (with functional or structural connectomes), computer graphics (points clouds and...

Thanks for the contribution. :) Could you look at @rodrigo-pena's comments so that we can merge it ?

Use [`black`](https://github.com/ambv/black) for code auto-formatting. Better than [`autopep8`](https://github.com/hhatto/autopep8) (does not really reformat) and [`yapf`](https://github.com/google/yapf) (popular, but too many configuration options, and slow).

Absolutely. It should be lazily imported (as matplotlib, pyqtgraph, flann, etc.). That is, it's only imported when the user calls the `SphereHealpix` constructor, not when the pygsp is imported. The...

Hi, thanks for your interest! You may be using an older version. Try to install the latest from github with `pip install git+https://github.com/epfl-lts2/pygsp`. (Discussion in #69.)

Thanks for reporting. Can you share the code you wrote that triggered the issue? I'm not familiar with this part of the code, but the `mr` attribute appears to be...

@nperraud, what is the status of this PR? Did @kalofolb check? Some comments: * It would be great to have an example or tutorial about this. * Can we find...

Thanks! Yeah, we can do the tutorial in a separate PR. My problem with the name is that `LearnGraph` is too generic. There are many ways to infer a graph...

Better to keep one class per method (the separation is clear and the parameters would be messy otherwise). Well, `NNGraph` also builds a graph from a set of features. The...