Skip to content

Latest commit

 

History

History
160 lines (134 loc) · 8.02 KB

File metadata and controls

160 lines (134 loc) · 8.02 KB

Acknowledgments

OpenASR is built on a mountain of open work. This page is our thank-you to the projects, models, and communities that make it possible. The formal, legally-required attributions live in NOTICE — this is the human version.

The computational core: ggml

OpenASR's entire native runtime runs on ggml, the tensor library behind llama.cpp and whisper.cpp. Every model we support executes through a thin Rust layer over a ggml fork. None of this would exist without Georgi Gerganov and the ggml / llama.cpp / whisper.cpp communities — their work is the foundation we stand on, and we send fixes back upstream where we can.

The models we run

OpenASR does not train models. We re-implement open model architectures on ggml and republish redistributable .oasr packs. Each pack preserves its original authors, upstream source, revision, license, and credits — both embedded in the pack metadata and on its page in our Hugging Face catalog: https://huggingface.co/OpenASR

Rather than restate that information here, follow the links — every model page credits the people who built the original.

Speech recognition

Speaker diarization

Translation (experimental)

Design and implementation references

OpenASR's native runtime is written from scratch, but several components are clean-room reimplementations whose designs we learned by studying open reference code. We did not reuse their source; the ideas and the debugging trails deserve credit all the same:

Inspiration

Model hosting

  • Hugging Face hosts our model catalog and every .oasr pack we publish — https://huggingface.co/OpenASR
  • hf-mirror.com keeps model downloads fast and reliable for users far from the Hub.

Data

  • The demo and test clip fixtures/jfk.wav is a public-domain excerpt of John F. Kennedy's 1961 inaugural address, distributed via the whisper.cpp project.
  • The performance harness uses a LibriSpeech test-clean clip.

The Rust ecosystem

OpenASR is written in Rust and leans on the wider crate ecosystem for audio I/O, linear algebra, FFT, serialization, HTTP, and the CLI. The full dependency set and its licenses live in the workspace Cargo.toml files and are gated by cargo deny.

And you

If you are reading this — trying OpenASR, filing an issue, or sending a patch — thank you. See CONTRIBUTING.md to get involved.