W1_A2_Ex3 error

A3 = [[0.36974721 0.36974721 0.36974721 0.36974721 0.36974721]]
This is the value I am getting after dropout which is obviously wrong and I am thus not able to pass the test. I have written the code as guided by the hints but still unable to figure anything out. Honestly, I am beat and any help would be appreciated.
Thanks in advance!!

Please share the full error.

Definitely! Here,
A3 = [[0.36974721 0.36974721 0.36974721 0.36974721 0.36974721]]
1 Tests passed
1 Tests failed

AssertionError Traceback (most recent call last)
in
4 print ("A3 = " + str(A3))
5
----> 6 forward_propagation_with_dropout_test(forward_propagation_with_dropout)

~/work/release/W1A2/public_tests.py in forward_propagation_with_dropout_test(target)
166 ]
167
→ 168 multiple_test(test_cases, target)
169
170 def backward_propagation_with_dropout_test(target):

/opt/conda/lib/python3.7/site-packages/dlai_tools/testing_utils.py in multiple_test(test_cases, target)
162 print(‘\033[91m’, len(test_cases) - success, " Tests failed")
163 raise AssertionError(
→ 164 “Not all tests were passed for {}. Check your equations and avoid using global variables inside the function.”.format(target.name))

AssertionError: Not all tests were passed for forward_propagation_with_dropout. Check your equations and avoid using global variables inside the function.

Send me your code in a private message. Click my name and message.

It seems suspicious that all of your A3 values are identical.

Code was incorrect. Rereading instructions helped…