You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: Handle Event_UNK and final cleanup
- Added `Unknown` variant to `SenseVoiceEvent` enum to handle "EVENT_UNK" tag.
- Removed debug `println!` statements and unused variables/imports from `src/lib.rs`.
- Synced `examples/basic.rs` with user's warning fixes.
- Ran `cargo fmt`.
- Verified compilation and tests pass without warnings.
* Bump version
---------
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
A Rust-based, Rknn as backend ASR. Running on the low cost SBC npu, fast and chep.
3
+
A Rust-based ASR system with dual backends: ONNX Runtime for standard PCs and RKNN for Rockchip NPUs. It runs smoothly on common desktops and laptops, while also supporting low-cost SBC NPUs for accelerated inference.
Then, add the feature gate `rknpu` in your `Cargo.toml`.
14
+
15
+
## Installation
16
+
17
+
Download [ONNX Runtime](https://github.com/microsoft/onnxruntime/releases) and unzip it. Copy `libonnxruntime.so.1.xx.x` and `libonnxruntime.so` into `/lib/`, `lib64/`, `usr/lib/`, or another appropriate library directory.
18
+
19
+
On Windows, place the DLL files in the same directory as your executable (or working directory).
20
+
21
+
## Usage & Example
22
+
23
+
This library provides two methods: it can process either an audio file or an audio stream.
24
+
25
+
See the [examples](examples) directory for more details.
0 commit comments