python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to use onnxruntime in a native android library
I need to use the onnxruntime library in an Android project, but I can't understand how to configure CMake to be able to use C++ headers and *.so from AAR.
I created a new Android Native Library modul...
Anton Shpakowski
Votes: 0
Answers: 1
Onnx inference throws an error with numpy float32 datatype inside the streamlit framework
In one of datascience web app project, I designed an app to predict the type of plant disease. It contains onnx models. The prediction runs without an error standalone. But inside the streamlit code, ...
tad
Votes: 0
Answers: 1
Converting Pth to onnx - convolution_mode error
I am trying to convert .pth to .onnx file,
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
cnn = nn.Sequential()
cnn.add_module('c1', nn.Conv2d(3, 32,...
Vishak Raj
Votes: 0
Answers: 0
PyTorch normalization in onnx model
I am doing image classification in pytorch, in that, I used this transforms
transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
and completed the training. After, I converted the .pth m...
vishak raj
Votes: 0
Answers: 2