lanlin

Results 12 comments of lanlin

Hi @0kto , which version of anaconda do you use? The above setting does not work for me. It shows that anaconda cannot spawn a process using the given python...

Hi @Neuchatel , the Jedi project automatically recognizes the modules in the current working directory. Thus, if we run `python abspath_of_minserver.py` after `cd project_path`, the Jedi can autocomplete the modules...

I faced the same issue. Besides the remote interpreter, with the latest version, the autocompletion with local python interpreter also does not work normally. Thank @nicolas-renard for your investigation and...

Hi @scuml , I tested the function of remote interpreter with v2.2.0 and it did not work normally. In particular, I used Sublime on Windows and tried starting a remote...

Hi @shufflebyte This is actually not a tensorflow bug. ``` def copy_model(model, x): copied_model = MetaModel() copied_model.forward(x) copied_model.set_weights(model.get_weights()) return copied_model ``` In this function, `Model.get_weights` actually returns some numpy arrays,...

Hi @HilbertXu In the case of multiple inner gradient steps, you need to manually watch the weight tensors (they are already not `tf.Variable`) and the tape could compute their gradients.

Hi @HilbertXu I wrote a toy [MAML-like script](https://colab.research.google.com/drive/1-p3m4UDRab9uX_Zc0EM83GnR7uK-9Ujn#scrollTo=EE0t87g3x_zp), which may be helpful for you. Please let me know if you find that the implementation is correct and works in more...

I forgot to enable sharing of that link, and now it should be accessible. Also, feel free to access me by email in my profile.

A quick workaround is to uninstall `outdated` after `ogb` is installed.

For anyone who is also confused, all sparse operations assume that the sparse tensor is row-major ordering, while `(adj.row, adj.col)` in numpy is column-major ordering. Thus, we need to use...