silero-vad / onnx_config.json
xnohat's picture
Upload folder using huggingface_hub
fda4b89 verified
raw
history blame
681 Bytes
{
"input_names": ["input"],
"output_names": ["logits"],
"dynamic_axes": {
"input": {
"0": "batch_size",
"1": "sequence_length"
},
"logits": {
"0": "batch_size",
"1": "num_classes"
}
},
"opset_version": 14,
"supported_backends": ["onnxruntime", "webgl", "wasm"],
"quantized": false,
"model_inputs": [
{
"name": "input",
"shape": [1, -1],
"dtype": "float32"
}
],
"model_outputs": [
{
"name": "logits",
"shape": [1, 2],
"dtype": "float32"
}
],
"pipeline_tag": "audio-classification",
"metadata": {
"transformers_version": "4.30.2",
"framework": "onnx"
}
}