Andrew Wagner

Results 23 comments of Andrew Wagner

My Unet is structured as a module that depends on two other modules. They all call operators in their forward() methods that don't have Module subclass equivalents, and they're also...

I'm back working on getting my model into tensorrt... Currently trying torch.jit.trace() followed by torch.onnx.export(). My current blocker is that ONNX supports einsum starting in opset 12, but tensorrt only...

Still working on tracing which einsum calls in e2cnn I'm actually hitting, but these seem like some likely candidates: https://github.com/QUVA-Lab/e2cnn/blob/1abf9509b7812fac079d0bcb3e72428366dc6bfb/e2cnn/nn/geometric_tensor.py#L357 https://github.com/QUVA-Lab/e2cnn/blob/8ce1fbba2dfd2bf12b4ff621d82005c4042a3c0e/e2cnn/nn/modules/r2_conv/basisexpansion_singleblock.py#L99

TensorRT's list of supported ONNX operators is here: https://docs.nvidia.com/deeplearning/tensorrt/support-matrix/index.html

I was actually looking at the code for the wrong branch; your comment was fine :) Thanks for the confirmation that I'm probably going in the right direction! Cheers, Andrew

I can confirm the problem as described, and the workaround: `sudo pip install cython==0.20` I did an `rm -rf build` before re-triggering the build to be safe; the build system...

It looks like john doherty's fork has some updated instructions... If I start over I might start there. https://github.com/johndoherty/vatic/blame/master/README.md He mentions the avconv fork in Ubuntu 14, so that is...

This guy even typeset his version of the installation instructions, but didn't mention what version of Ubuntu they are for... http://cs-people.bu.edu/sameki/blog2.pdf

Hi @gaetanocalabrese , I spent a few hours trying to install vatic (loosely) following john doherty's fork. He has the issue tracker turned off on his repo, so I'll keep...

is "pass" actually what you set for the root database user? This is usually set during the mysql install. Maybe also try > database = "mysql://root:pass@localhost/vatic" ? I am new...