Please advise on this error from the model function test.
All prior tests pass.
Thank-you.
Nick
AssertionError: Wrong length for d[‘costs’]. 20 != 1
Please advise on this error from the model function test.
All prior tests pass.
Thank-you.
Nick
AssertionError: Wrong length for d[‘costs’]. 20 != 1
Hi, is that error happening in the model_test(model)
line?
I’m struggling a little bit to understand how that error is happening. The costs
array is filled in the optimize
function, one value every 100 iterations and in the model
function that’s included in the d
dictionary.
So the length of costs
in the dictionary d
depends only on the number of iterations (which by default is 2000). In principle you are not expected to change the code which takes care of the recording of the costs, just the calculation of every cost
value which is saved in the list every 100 iterations, so that would result in len(d[‘costs’]) = 20
Could you provide us with additional information about the error?
Maybe you could print the dictionary d
before the return statement to see the content.
AssertionError Traceback (most recent call last)
in
----> 1 model_test(model)
~/work/release/W2A2/public_tests.py in model_test(target)
112
113 assert type(d[‘costs’]) == list, f"Wrong type for d[‘costs’]. {type(d[‘costs’])} != list"
→ 114 assert len(d[‘costs’]) == 1, f"Wrong length for d[‘costs’]. {len(d[‘costs’])} != 1"
115 assert np.allclose(d[‘costs’], expected_output[‘costs’]), f"Wrong values for pred. {d[‘costs’]} != {expected_output[‘costs’]}"
116
AssertionError: Wrong length for d[‘costs’]. 20 != 1
In your dictionary d
the num_iterations
is 50, therefore, only one cost should have been added to the costs
list. To debug the error you could add a print statement in the optimize
function right before the cost is added to the cost list. Something like this:
# Record the costs
if i % 100 == 0:
print('append cost', i)
costs.append(cost)
I added some print statements and my costs list does have length 20.
It looks to me like the test assertion is expecting length 1. My number of iterations is set to 2000.
the append cost gets printed 20 times
That’s a bit odd, the number of iterations when model_test(model)
is called is 50
as you can see in your printout of the dictionary d
, therefore, the length of costs
should be 1
. Are you hardcoding the number of iterations in the optimize
function? Maybe you could print also that value before the for
loop (for i in range(num_iterations):
) in optimize
function, that value should be 50 when calling model_test
.
i have not changed anything in optimize function . I printed the value of num iterations which came out to be 2000 on executing model test.
I’m seeing that there was an update of this notebook on the 28th of April, did you start working on this prior that date? I’m thinking that maybe you are working on an older version of the notebook but the tests are performed with the newer one.
I updated to the last version prior to check this issue and in the model_test(model)
cell there are 3 tests and in all of them the number of iterations is 50.
Please, let me know if this hint helps you otherwise I will contact the course staff to check the issue because the number of iterations in your case is different to mine.
I had copied the parameters of model when I used arguments in optimize in it.
optimize(w,b,X_train,Y_train,num_iterations = 2000, learning_rate = 0.05, print_cost = true)
I changed them to
optimize(w,b,X_train,Y_train,num_iterations, learning_rate , print_cost) and am no longer getting any error.