khimaros

Results 284 comments of khimaros

@panekj great answers here and happy to see that the server is open source. is there any way to download the full database dump from the current repository?

i suppose i meant a dump of the public extension data. whatever is needed to make a full mirror of the plugin registry. this also assumes the registry endpoint can...

wouldn't it save money in the long run to support mirrors?

you seem to be describing a bootstrapping problem. if the capability to create and configure mirrors is not present, then it will never be possible to reduce server costs via...

@flyisland i believe the URLs you're looking for can be constructed from here: https://github.com/suno-ai/bark/blob/main/bark/generation.py#L86

@flyisland maybe you are concatenating the strings incorrectly. here's what worked for me: ```shell for model in text_2 coarse_2 fine_2; do wget https://dl.suno-models.io/bark/models/v0/${model}.pt done ```

following @gkucsko instructions with the large models results in the `text_2.pt` continuously being overwritten with `found outdated text model, removing.` -- i think the checksum of that file is incorrect...

@mobilestack > > > Do I have to change the model name to its checksum as the file name? Strange that when I run the example from README, it automatically...

this should work to download all of the files (with resume): ```shell for model in text coarse fine text_2 coarse_2 fine_2; do remote_url="https://dl.suno-models.io/bark/models/v0/${model}.pt" remote_md5=$(echo -en "${remote_url}" | md5sum | awk...

rye can be thought of as a combination of poetry for managing package dependencies and asdf-python for maintaining cpython versions. the benefit of rye is that it allows you to...