All the tests have passed up to Exercise 8 - Transformer. I get an Assertion Error for the translation and I can’t figure out why. For the final_output I only use 1 line of code even though the comment says to use 2 lines. Any ideas where I could be making a mistake? Thanks.
AssertionError Traceback (most recent call last)
in
1 # UNIT TEST
----> 2 Transformer_test(Transformer, create_look_ahead_mask, create_padding_mask)
Hi Melanie. My issue in Ex8 was caused by an error I made in one of the previous exercises. I can’t remember the exact error but it was an obvious mistake and it surprised me that the test would pass for that exercise.
Thanks for your feedback.
After searching the previous excercises I actually found my error directly in the Transformer call method. I had the wrong input arguments to the decoder. Hope this helps someone in the future.