We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,I trained a semantic tokens -> acoustic tokens(3 codes) model,and I want to use the argmax to make every inference the same.
if argmax: print("use argmax") sampled = torch.argmax(last_coarse_logits, dim = -1) else: print("not use argmax") filtered_logits = top_k(last_coarse_logits, thres = filter_thres) sampled = gumbel_sample(filtered_logits, temperature = temperature, dim = -1)
However,when in the argmax mode,the semantic tokens -> acoustic tokens(3 codes) -> wav,and the wav has no speech,with long silence,do u know Why?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,I trained a semantic tokens -> acoustic tokens(3 codes) model,and I want to use the argmax to make every inference the same.
However,when in the argmax mode,the semantic tokens -> acoustic tokens(3 codes) -> wav,and the wav has no speech,with long silence,do u know Why?
The text was updated successfully, but these errors were encountered: