Skip to content

Commit 006feb5

Browse files
committed
add zipvoice
1 parent 199263d commit 006feb5

File tree

375 files changed

+820571
-88
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+820571
-88
lines changed

crates/sherpa-rs-sys/checksum.txt

Lines changed: 69 additions & 85 deletions
Large diffs are not rendered by default.

crates/sherpa-rs-sys/dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"tag": "v1.12.9",
2+
"tag": "v1.12.14",
33
"url": "https://github.com/k2-fsa/sherpa-onnx/releases/download/{tag}/{archive}",
44
"targets": {
55
"x86_64-pc-windows-msvc": {

crates/sherpa-rs-sys/sherpa-onnx

Submodule sherpa-onnx updated 538 files

crates/sherpa-rs/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ name = "tts_matcha"
5555
required-features = ["tts"]
5656
path = "../../examples/tts_matcha.rs"
5757

58+
[[example]]
59+
name = "tts_zipvoice"
60+
required-features = ["tts"]
61+
path = "../../examples/tts_zipvoice.rs"
62+
5863
[[example]]
5964
name = "audio_tag"
6065
path = "../../examples/audio_tag.rs"

crates/sherpa-rs/src/dolphin.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ impl DolphinRecognizer {
6969
modeling_unit: mem::zeroed::<_>(),
7070
zipformer_ctc: mem::zeroed::<_>(),
7171
canary: mem::zeroed::<_>(),
72+
wenet_ctc: mem::zeroed::<_>(),
7273
}
7374
};
7475

crates/sherpa-rs/src/keyword_spot.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ impl KeywordSpot {
102102
tokens_buf: mem::zeroed::<_>(),
103103
tokens_buf_size: mem::zeroed::<_>(),
104104
nemo_ctc: mem::zeroed::<_>(),
105+
t_one_ctc: mem::zeroed::<_>(),
105106
},
106107
}
107108
};

crates/sherpa-rs/src/moonshine.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ impl MoonshineRecognizer {
8383
sense_voice: mem::zeroed::<_>(),
8484
zipformer_ctc: mem::zeroed(),
8585
canary: mem::zeroed::<_>(),
86+
wenet_ctc: mem::zeroed::<_>(),
8687
}
8788
};
8889

crates/sherpa-rs/src/paraformer.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ impl ParaformerRecognizer {
7272
dolphin: mem::zeroed::<_>(),
7373
zipformer_ctc: mem::zeroed::<_>(),
7474
canary: mem::zeroed::<_>(),
75+
wenet_ctc: mem::zeroed::<_>(),
7576
}
7677
};
7778

crates/sherpa-rs/src/sense_voice.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ impl SenseVoiceRecognizer {
7676
dolphin: mem::zeroed::<_>(),
7777
zipformer_ctc: mem::zeroed(),
7878
canary: mem::zeroed(),
79+
wenet_ctc: mem::zeroed::<_>(),
7980
}
8081
};
8182

crates/sherpa-rs/src/transducer.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ impl TransducerRecognizer {
9393
dolphin: mem::zeroed::<_>(),
9494
zipformer_ctc: mem::zeroed::<_>(),
9595
canary: mem::zeroed::<_>(),
96+
wenet_ctc: mem::zeroed::<_>(),
9697
};
9798

9899
let recognizer_config = sherpa_rs_sys::SherpaOnnxOfflineRecognizerConfig {

0 commit comments

Comments
 (0)