You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a wiki available for our users. Please make sure you have checked it out first.
Hi, My name is Nathan and I am follwing your instruction to build testfile for "Stream example in C++"
I got some error.
My env is Centos7 and I installed gcc 12.2.0 myself.
I faced few error cause mismatch between window and linux. So finally I compiled test binary and run.
But error occurred as below.
test wav file is my own thing.
num_channel_ :1
sample_rate_ :16000
bits_per_sample_:16
num_samples :403840
num_data_size :807680
terminate called after throwing an instance of 'Ort::Exception'
what(): Load model from silero_vad.onnx failed:Protobuf parsing failed.
I tested model loading about 'silero_vad.onnx '
souce as below.
I got same error
"Failed to load the model: Load model from silero_vad.onnx failed:Protobuf parsing failed."
The new VAD version was released just now - #2 (comment).
If the issue persists with the new version, can you please open a new issue referring to this one.
Many thanks!
Hi snakers4.
I tried your new VAD version to run.
But it seem same error as bleow.
terminate called after throwing an instance of 'Ort::Exception'
what(): Load model from silero_vad.onnx failed:Protobuf parsing failed.
Aborted (core dumped)
My env is
docker gcc:12.2.0-bullseye
and I modified some line
//std::wstring path = L"silero_vad.onnx";
std::string path = "silero_vad.onnx";
❓ Questions and Help
We have a wiki available for our users. Please make sure you have checked it out first.
Hi, My name is Nathan and I am follwing your instruction to build testfile for "Stream example in C++"
I got some error.
My env is Centos7 and I installed gcc 12.2.0 myself.
I faced few error cause mismatch between window and linux. So finally I compiled test binary and run.
But error occurred as below.
test wav file is my own thing.
num_channel_ :1
sample_rate_ :16000
bits_per_sample_:16
num_samples :403840
num_data_size :807680
terminate called after throwing an instance of 'Ort::Exception'
what(): Load model from silero_vad.onnx failed:Protobuf parsing failed.
I downloaded onnx model from here 'https://github.com/ricky0123/vad/blob/master/silero_vad.onnx'
please help me to fix it.
Thank you.
p.s
I tested model loading about 'silero_vad.onnx '
souce as below.
I got same error
"Failed to load the model: Load model from silero_vad.onnx failed:Protobuf parsing failed."
#include
#include "onnxruntime_cxx_api.h"
#include "cpu_provider_factory.h"
int main() {
// Initialize the ONNX Runtime environment
Ort::Env env(ORT_LOGGING_LEVEL_WARNING, "test");
}
The text was updated successfully, but these errors were encountered: