From 3f7c7eb05ff34818eeba81e945497202dc8df1c5 Mon Sep 17 00:00:00 2001 From: Evan King Date: Thu, 14 Nov 2024 12:57:24 -0600 Subject: [PATCH] Add "Known Issues" to README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index c2d2f95..f6d124e 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,11 @@ print(tokenizer.decode(tokens[0], skip_special_tokens=True)) * [ ] Long-form transcription demo +## Known Issues + +### UserWarning: You are using a softmax over axis 3 of a tensor of shape torch.Size([1, 8, 1, 1]) +This is a benign warning arising from Keras. For the first token in the decoding loop, the attention score matrix's shape is 1x1, which triggers this warning. You can safely ignore it, or run with `python -W ignore` to suppress the warning. + ## Citation If you benefit from our work, please cite us: ```