C5 Week 4 Exercise 8 - AssertionError: Wrong values in translation

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)

~/work/W4A1/public_tests.py in Transformer_test(target, create_look_ahead_mask, create_padding_mask)
286 assert np.allclose(translation[0, 0, 0:8],
287 [0.017416516, 0.030932948, 0.024302809, 0.01997807,
→ 288 0.014861834, 0.034384135, 0.054789476, 0.032087505]), “Wrong values in translation”
289
290 keys = list(weights.keys())

AssertionError: Wrong values in translation

That test tends to collect undetected errors in the Encoder and Decoder functions also.


AssertionError Traceback (most recent call last)
in
1 # UNIT TEST
----> 2 Transformer_test(Transformer, create_look_ahead_mask, create_padding_mask)

~/work/W4A1/public_tests.py in Transformer_test(target, create_look_ahead_mask, create_padding_mask)
286 assert np.allclose(translation[0, 0, 0:8],
287 [0.017416516, 0.030932948, 0.024302809, 0.01997807,
→ 288 0.014861834, 0.034384135, 0.054789476, 0.032087505]), “Wrong values in translation”
289
290 keys = list(weights.keys())

AssertionError: Wrong values in translation

Hi Jason,
did you manage to solve your issue? I am stuck at the same place now :slightly_frowning_face: and looking for ideas where I might be wrong.

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.

2 Likes

Thanks
Helped me when read it carefully

Thank you Melanie - your comment helped me solve this issue. Thanks!!

Thanks! Indeed this was the issue for me.

Melanie … You are a shining Star!

Thank you very much for your hint! It helped me too.

I have the same error but even I understood my input argument is not correct. can you help??

I have the same error. For the inputs, I am not using the output sentence anywhere. Am I missing something?

The “wrong values in translation” error can be triggered by a number of different issues.

Update:
Yes, you should use the output sentence.