Hello @ArthurZ @zucchinator,
I have an proposal for improvement of Mamba model for which I wanted to raise PR.
Method: The code changes are made in c++ file. I use cython to integrate c++ code to python. For this I will be generating an shared library file (.so) which will have the code. I will import it as library in transformers python code(Ex: import library) and call API’s (Ex: library.api_name() ) from it.
I have queries on how to raise a PR for the above scenario:
- In which folder path should I keep the cython c++ binding codes ?
- How to provide the share library file (.so) file in the PR, In which location should I keep?