Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC Add Readme description #9

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
added description
  • Loading branch information
PABannier committed Jul 26, 2023
commit 59a356f05f08d672174de142445b41ecc2031b79
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
- [ ] CMakeLists
- [ ] GitHub reference to GGML
- [ ] Generate one binary large file for the weights
# bark.cpp (coming soon!)

Inference of SunoAI's bark model in pure C/C++ using [ggml](https://github.com/ggerganov/ggml).

## Description

The main goal of `bark.cpp` is to synthesize audio from a textual input with the [Bark](https://github.com/suno-ai/bark) model using 4-bit quantization on a MacBook.

Bark has essentially 4 components:
- [x] Semantic model to encode the text input
- [x] Coarse model
- [x] Fine model
- [ ] Encoder (quantizer + decoder) to generate the waveform from the tokens

## Roadmap

- [ ] Quantization
- [ ] FP16
- [ ] Swift package
- [ ] Swift package for iOS devices