Add support for the new NeMo Canary ASR model across multiple language bindings by introducing a Canary model configuration and setter method on the offline recognizer. - Define Canary model config in Pascal, Go, C#, Dart and update converter functions - Add SetConfig API for offline recognizer (Pascal, Go, C#, Dart) - Extend CI/workflows and example scripts to test non-streaming Canary decoding
18 lines
476 B
Modula-2
18 lines
476 B
Modula-2
module non-streaming-canary-decode-files
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/k2-fsa/sherpa-onnx-go v1.12.4
|
|
github.com/spf13/pflag v1.0.6
|
|
github.com/youpy/go-wav v0.3.2
|
|
)
|
|
|
|
require (
|
|
github.com/k2-fsa/sherpa-onnx-go-linux v1.12.4 // indirect
|
|
github.com/k2-fsa/sherpa-onnx-go-macos v1.12.4 // indirect
|
|
github.com/k2-fsa/sherpa-onnx-go-windows v1.12.4 // indirect
|
|
github.com/youpy/go-riff v0.1.0 // indirect
|
|
github.com/zaf/g711 v0.0.0-20190814101024-76a4a538f52b // indirect
|
|
)
|