Vincent QB, PhD

Results 16 comments of Vincent QB, PhD

Yes, either stripping or commenting out the non-code content would do. The latter option is what ipython nbconvert does when converting to code. For the flag, how about "--to code"...

What I'm seeing is different: the lines to be removed are solid dark red: ![gitedit](https://user-images.githubusercontent.com/3047868/62827926-ae9dfc80-bba8-11e9-9438-345251b52775.png)

~/.vimrc ``` call plug#begin('~/.vim/plugged') Plug 'cormacrelf/vim-colors-github' call plug#end() colorscheme github ```

Thanks! The following works, though I get a gray background behind the red/green text. ``` call plug#begin('~/.vim/plugged') Plug 'cormacrelf/vim-colors-github' call plug#end() " set Vim-specific sequences for RGB colors set termguicolors...

Without tmux, I get your image. With tmux, I get a gray background for the modified text as show in image here, but still readable. :) ![gitedit_tmux](https://user-images.githubusercontent.com/3047868/62987379-806d2680-be0d-11e9-86f9-1ce68213a9ba.png)

Transforms and functionals are now jitable. Have you tried exporting your model using jit and then importing on mobile? see [mobile page](https://pytorch.org/mobile/home/) Is that what you are trying to do?

Indeed, fft is not currently supported on pytorch mobile, as mentioned [here](https://github.com/pytorch/pytorch/issues/29796#issuecomment-554567624).

@dreiss @supriyar -- do you have some information to share about the functions that are supported within mobile, or the ones that would welcome contributions from the community?

> We enable every forward CPU op on mobile. I think the issue here is that this particular op doesn't have a portable implementation. We would be interested in a...

Thanks for opening an issue for this :) This is an issue upstream with pytorch directly, see pytorch/pytorch#31317. @houseroad, do you know the status of STFT support with ONNX? We...