Support zipformer CTC ASR with whisper features. (#2319)

This commit is contained in:
Fangjun Kuang
2025-06-27 00:15:11 +08:00
committed by GitHub
parent 282211c01f
commit 54bf3732d9
8 changed files with 184 additions and 37 deletions

View File

@@ -64,6 +64,8 @@ class OnlineZipformer2CtcModel : public OnlineCtcModel {
// before we process the next chunk.
int32_t ChunkShift() const override;
bool UseWhisperFeature() const override;
private:
class Impl;
std::unique_ptr<Impl> impl_;