Views
No views yet
⚠️ Non-commercial use only. This model is licensed CC BY-NC 4.0, inherited from the original Meta AI checkpoint. Unlike most other onnx-asr conversions in this collection (Apache-2.0 / CC0 / CC-BY), this model may not be used for commercial purposes.
wav2vec2-ctc model type).input_lengths for correct behavior with padded/batched input, so the
model works with onnx-asr's plain identity preprocessor (raw 16kHz waveform in).1import onnx_asr
2
3model = onnx_asr.load_model("OpenVoiceOS/wav2vec2-base-10k-voxpopuli-ft-pl-onnx")
4print(model.recognize("test.wav"))model.onnx / model.onnx.data — fp32 ONNX graph (inputs: input_values (batch, samples) float32, input_lengths (batch,) int64; output: logprobs (batch, frames, vocab) float32 log-softmax).vocab.txt — CTC vocabulary in onnx-asr's token id format (word-delimiter -> ▁, pad token -> <blk>).config.json — {"model_type": "wav2vec2-ctc", "subsampling_factor": 320}.onnxruntime.quantization does not
currently support the torch.onnx dynamo-exported graph for this architecture.facebook/wav2vec2-base-10k-voxpopuli-ft-pl, Meta AI / FAIR). See the license text
for full terms.