This PR adds support for non-streaming Zipformer CTC ASR models across multiple language bindings, WebAssembly, examples, and CI workflows. - Introduces a new OfflineZipformerCtcModelConfig in C/C++, Python, Swift, Java, Kotlin, Go, Dart, Pascal, and C# APIs - Updates initialization, freeing, and recognition logic to include Zipformer CTC in WASM and Node.js - Adds example scripts and CI steps for downloading, building, and running Zipformer CTC models Model doc is available at https://k2-fsa.github.io/sherpa/onnx/pretrained_models/offline-ctc/icefall/zipformer.html
53 lines
1.4 KiB
Dart
53 lines
1.4 KiB
Dart
// Copyright (c) 2025 Xiaomi Corporation
|
|
import 'dart:io';
|
|
|
|
import 'package:args/args.dart';
|
|
import 'package:sherpa_onnx/sherpa_onnx.dart' as sherpa_onnx;
|
|
|
|
import './init.dart';
|
|
|
|
void main(List<String> arguments) async {
|
|
await initSherpaOnnx();
|
|
|
|
final parser = ArgParser()
|
|
..addOption('model', help: 'Path to the Zipformer CTC model')
|
|
..addOption('tokens', help: 'Path to tokens.txt')
|
|
..addOption('input-wav', help: 'Path to input.wav to transcribe');
|
|
|
|
final res = parser.parse(arguments);
|
|
if (res['model'] == null ||
|
|
res['tokens'] == null ||
|
|
res['input-wav'] == null) {
|
|
print(parser.usage);
|
|
exit(1);
|
|
}
|
|
|
|
final model = res['model'] as String;
|
|
final tokens = res['tokens'] as String;
|
|
final inputWav = res['input-wav'] as String;
|
|
|
|
final zipformerCtc = sherpa_onnx.OfflineZipformerCtcModelConfig(model: model);
|
|
|
|
final modelConfig = sherpa_onnx.OfflineModelConfig(
|
|
zipformerCtc: zipformerCtc,
|
|
tokens: tokens,
|
|
debug: true,
|
|
numThreads: 1,
|
|
);
|
|
final config = sherpa_onnx.OfflineRecognizerConfig(model: modelConfig);
|
|
final recognizer = sherpa_onnx.OfflineRecognizer(config);
|
|
|
|
final waveData = sherpa_onnx.readWave(inputWav);
|
|
final stream = recognizer.createStream();
|
|
|
|
stream.acceptWaveform(
|
|
samples: waveData.samples, sampleRate: waveData.sampleRate);
|
|
recognizer.decode(stream);
|
|
|
|
final result = recognizer.getResult(stream);
|
|
print(result.text);
|
|
|
|
stream.free();
|
|
recognizer.free();
|
|
}
|