xhuan8
xhuan8
@lazerW0lf I have the same problem, any workaround?
thanks, the problem is clear enough. the control should provide some method to unregister event handles in my case, I only need one instance, but call Start() multiple times on...
it could be a garbage collection issue, and I cannot reproduce it with a small project. Could you please check the piece of code, to see if any possible memory...
seems there is no prebuild package for torchvision, what is the best way to add it after build from source?
I try to call the native method from torchvision, torch.ops.torchvision.nms https://github.com/pytorch/vision/blob/main/torchvision/csrc/ops/nms.cpp https://github.com/pytorch/vision/blob/main/torchvision/ops/_register_onnx_ops.py how to do it in TorchSharp?
They are under https://github.com/pytorch/vision/tree/main/torchvision/csrc/ops, contains cpu and cuda implementations. We don't need the IO operations, so FFMPEG and JPEG are not needed. Currently I'll try build from souce and use...
no, only build from source.
Fortunately I have done the build, there are 3 files, torchvision.dll, torchvision.exp, torchvision.lib, and quite small, only 2 MB
try to load torchvision native dll with LoadLibrary, it fails with error 1114, @NiklasGustafsson @kaiidams do you have any idea? the dll upload to: https://drive.google.com/file/d/1LHd1jwuFlFT87-vT09hzsOWpUUeD-TKF/view?usp=sharing
@NiklasGustafsson It takes time to implement with C# and verify the correctness, and also not sure how is the performace without cuda. Currently I'll use the c++ wrapper, the method...