bark
bark copied to clipboard
Where is the requirements-pip.txt ?
seems like the requirements-pip.txt was removed from repo?
seems like the requirements-pip.txt was removed from repo? I put in in a sub directory, old_setup_files, as it was wasn't up to date.
I just played with the colab files, adding this should fix it:
!pip install -r /content/bark/old_setup_files/requirements-pip.txt
!pip install -r /content/bark/old_setup_files/bark-requirements-allpip.txt
!pip install devtools
Im guessing one could go to a previous commit aswell, but all seems to be working.
Also when you find a line starting with:
full_generation_segments, audio_arr_segments, final_filename_will_be = api.generate_audio_long(
Add a 4th variable name ", clone_created_filepaths" before the = sign:
full_generation_segments, audio_arr_segments, final_filename_will_be, clone_created_filepaths = api.generate_audio_long(
Finally you might need to add full path for the .npz files depending on what notebook you are using, in my case they were colcated at
/content/bark/bark_infinity/assets/prompts (custom)
/content/bark/bark/assets/prompts (default)
/content/bark/bark/assets/prompts/v2 (default)
I fixed the Google Colab notebooks so you can use one of theese links in case @JonathanFly havnt had time to update the files. Tested on Colab right now.
seems like the requirements-pip.txt was removed from repo? I put in in a sub directory, old_setup_files, as it was wasn't up to date.
Dockerfile still requires it at previous location.