Open Rick-29 opened 1 week ago
We're always open to PRs! Feel free to open one to add this to the modules in burn-core
🙂
How do i do that? Sorry, I am really new to creating pull requests
No worries! This can be done from a fork of the repository.
Check out the details here: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork
In PyTorch there is a module called PixelShuffle . I created as mall implementation of it that currently only supports 4D Tensors (I tried to follow the implementation format of the library) and wanted to share it to check if someday it could be added to the crate. This is the full code:
And here are some test that I made comparing the outputs with the ones from the pytorch implementation:
The original implementation in c++ is here