diff options
| author | soryu <soryu@soryu.co> | 2025-12-21 00:40:04 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2025-12-23 14:47:18 +0000 |
| commit | 55cacf6e1a087c0fa6950a1ddeb09060f787e541 (patch) | |
| tree | 0b8e754eb16c829fc0ee7c8f4ba66fe75b4f3ebf /parakeet-rs/Cargo.toml.orig | |
| parent | 84fee5ce2ae30fb2381c99b9b223b8235b962869 (diff) | |
| download | soryu-55cacf6e1a087c0fa6950a1ddeb09060f787e541.tar.gz soryu-55cacf6e1a087c0fa6950a1ddeb09060f787e541.zip | |
Add EOU detection and streaming diarization
Diffstat (limited to 'parakeet-rs/Cargo.toml.orig')
| -rw-r--r-- | parakeet-rs/Cargo.toml.orig | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/parakeet-rs/Cargo.toml.orig b/parakeet-rs/Cargo.toml.orig new file mode 100644 index 0000000..4d91e18 --- /dev/null +++ b/parakeet-rs/Cargo.toml.orig @@ -0,0 +1,54 @@ +[package] +name = "parakeet-rs" +version = "0.2.5" +edition = "2021" +authors = ["altunenes"] +description = "Fast ASR & Speaker Diarization with NVIDIA Parakeet via ONNX" +repository = "https://github.com/altunenes/parakeet-rs" +license = "MIT OR Apache-2.0" +keywords = ["speech-recognition", "asr", "parakeet", "onnx", "nvidia"] +categories = ["multimedia::audio", "science"] + +[lib] +name = "parakeet_rs" +path = "src/lib.rs" + +[[example]] +name = "transcribe" +path = "examples/transcribe.rs" + +[[example]] +name = "diarization" +path = "examples/diarization.rs" + +[[example]] +name = "raw" +path = "examples/raw.rs" + +[[example]] +name = "streaming" +path = "examples/streaming.rs" + +[dependencies] +ort = { version = "2.0.0-rc.10", features = ["download-binaries"] } +hound = "3.5" +eyre = "0.6" +ndarray = "0.16" +tokenizers = "0.20" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +rustfft = "6.4" + +[dev-dependencies] + +[features] +default = ["cpu"] +cpu = [] +cuda = ["ort/cuda"] +tensorrt = ["ort/tensorrt"] +coreml = ["ort/coreml"] +directml = ["ort/directml"] +rocm = ["ort/rocm"] +openvino = ["ort/openvino"] +webgpu = ["ort/webgpu"] +sortformer = []
\ No newline at end of file |
