Ivo Lucas
Ivo Lucas
My work around for loading modules that need Torchvision operations: Build Torchvision following the cpp example](https://github.com/pytorch/vision/tree/main/examples/cpp) Manually load the lib after the pytorch ``` static { Loader.load(torch.class); System.load("/path/to/your/build/libtorchvision.so"); } ```...
No just the lib that is generated
@saudet I made one pull request to add pytorch vision. I don't know if it is the best approach but it is working for my use case. https://github.com/bytedeco/javacpp-presets/pull/1599
I think you can. Give it a try.
You are suggesting to be included in the normal build of pytorch presets? Yes I can do that.
I didn't test on other OS. Because of that, I didn't want to add code that I wasn't sure it worked. Hopping on a windows and/or Mac developer to add...