Martin

Results 6 comments of Martin

> If you don't want to copy use `PYBIND11_MAKE_OPAQUE()`. You can read about it here: https://pybind11.readthedocs.io/en/stable/advanced/cast/stl.html#making-opaque-types I am not quite sure, how to use this with numpy. Do you have...

I have the same problem, imported torch is all missing imports. However, I have noticed this: when I start fresh instance of Visual Studio 2022, all is working correctly. However,...

It is not related to some specific code, any Python code with imports from external 3rd party lib (installed via pip or Conda) or my own imports (relative or absolute...

Easy hotfix is to modify trim method: ``` // trim whitespace from the beginning and end of a string static std::string trim(const std::string& str) { size_t start = 0; size_t...