Open goforher opened 1 month ago
In line 15 of
ac.py
, the codefrom ..binary import BitPacker, BitUnpacker
referencesbinary
, but there is no such folder or dependency package in the project.
This may not seem important
OK, thanks
Hello, I have a question. Why is the forward
method in this class not using the lines of code # residual = residual - quantized.detach()
and # quantized_out = quantized_out + quantized
, while the encode
and decode
methods do? Won't this cause inconsistency between training and inference?
Hello, I have a question. Why is the
forward
method in this class not using the lines of code# residual = residual - quantized.detach()
and# quantized_out = quantized_out + quantized
, while theencode
anddecode
methods do? Won't this cause inconsistency between training and inference?
The two functions are not utilized; instead, the forward function is employed.
Alright, thank you.
Hello, when I try to retrain the model using the AISHELL-3 dataset, I encounter this error as shown in the picture. The configuration file is as follows; could it be due to an incorrect configuration file or is it caused by the dataset?
In line 15 of
ac.py
, the codefrom ..binary import BitPacker, BitUnpacker
referencesbinary
, but there is no such folder or dependency package in the project.