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
In librispeech_conformer the model_fn returns logits_batch as a Tuple of tensors, not a tensor.
librispeech_conformer
model_fn
logits_batch
The return type is hence wrong:
algorithmic-efficiency/algorithmic_efficiency/workloads/librispeech_conformer/librispeech_pytorch/workload.py
Line 119 in ddf5efc
It should be:
def model_fn(...) -> Tuple[Tuple[spec.Tensor, spec.Tensor], spec.ModelAuxiliaryState]:
As insignificant as it seems, this caused me quite some trouble debugging an OOM issue. Might be useful for other ppl too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
librispeech_conformer
themodel_fn
returnslogits_batch
as a Tuple of tensors, not a tensor.The return type is hence wrong:
algorithmic-efficiency/algorithmic_efficiency/workloads/librispeech_conformer/librispeech_pytorch/workload.py
Line 119 in ddf5efc
It should be:
As insignificant as it seems, this caused me quite some trouble debugging an OOM issue. Might be useful for other ppl too.
The text was updated successfully, but these errors were encountered: