Skip to content
forked from PABannier/bark.cpp

Fork of Suno AI's Bark model in C/C++

License

Notifications You must be signed in to change notification settings

NexaAI/bark.cpp

 
 

Repository files navigation

Bark CPP

This repository forks from bark-cpp. Follow the instructions below to check in code changes and sync with the upstream repository.

To build this project:

make clean
cmake -B build
cmake --build build --config Release -j 24

Checking in Your Code Changes

To commit your local code changes and push them to your repository, use the following steps:

  1. Stage all changes:

    git add .
  2. Commit the changes with a descriptive message:

    git commit -m "Describe your changes here"
  3. Push the changes to your master branch:

    git push origin master

Syncing with Upstream Changes

To pull the latest changes from the upstream repository (PABannier/bark.cpp), follow these steps:

  1. Add the upstream repository if you haven't done so already:

    git remote add upstream https://github.com/PABannier/bark.cpp
  2. Fetch the latest changes from the upstream repository:

    git fetch upstream
  3. Merge the upstream changes into your local master branch:

    git merge upstream/master
  4. If necessary, commit the merge (if there were any conflicts to resolve):

    git commit -m "Merge from upstream"
  5. Push the merged changes to your origin/master branch:

    git push origin master

About

Fork of Suno AI's Bark model in C/C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 75.0%
  • Python 13.0%
  • C 8.1%
  • CMake 2.1%
  • Swift 1.2%
  • Dockerfile 0.6%