encodec-pytorch
encodec-pytorch copied to clipboard
unofficial implementation of the High Fidelity Neural Audio Compression
Hello, i am interested in encodec. After reviewing the paper, it seems to have some similarities to self-supervised learning? I want to use it to finish the classification task.
Hello,I'm training on my own dataset now,and i wonder if i can use --lm to further compress the stream using entropy coding on my_encodec model,and how can I modify the...
When using multi-gpu, why does buffer broadcast is disabled as in this line: https://github.com/NoFish-528/encodec-pytorch/blob/bd734c5dd2327456cc4b230ed6b3af9afd3d3145/train_multi_gpu.py#L269 In EuclideanCodebook module, the codebook is stored as buffer: https://github.com/NoFish-528/encodec-pytorch/blob/bd734c5dd2327456cc4b230ed6b3af9afd3d3145/quantization/core_vq.py#L143 In my opinion, the buffer should...