c3_w2_UNQ_C1 AssertionError: Wrong value. Expected 27, got 12.0

AssertionError Traceback (most recent call last)
in
1 # Public tests
2 from public_tests import *
----> 3 test_cofi_cost_func(cofi_cost_func)

~/work/public_tests.py in test_cofi_cost_func(target)
14 J = target(X_r, W_r, b_r, Y_r, R_r, 2);
15 assert not np.isclose(J, 13.5), f"Wrong value. Got {J}. Did you multiplied the regulartization term by lambda_?"
—> 16 assert np.isclose(J, 27), f"Wrong value. Expected {27}, got {J}. Check the regularization term"
17
18

AssertionError: Wrong value. Expected 27, got 12.0. Check the regularization term

Hi!

Have you multiplied the regularization term by lambda_ ?

I am having the issue of multiplying the regularization term!
I don’t know how to solve it?
Anyone can help?
AssertionError: Wrong value. Expected 27, got 270.0. Check the regularization term

Hi!

Can you send me your code in a direct message?
I need a little more context to help

AssertionError: Wrong value. Expected 27, got 540.0. Check the regularization term

how to solve this?

I have a similar problem. I also tried it with the code from the solution, the function seems to work since it returns the correct value in the following cells, the problem is just in the test function:

# GRADED FUNCTION: cofi_cost_func
# UNQ_C1

def cofi_cost_func(X, W, b, Y, R, lambda_):
    """
    Returns the cost for the content-based filtering
    Args:
      X (ndarray (num_movies,num_features)): matrix of item features
      W (ndarray (num_users,num_features)) : matrix of user parameters
      b (ndarray (1, num_users)            : vector of user parameters
      Y (ndarray (num_movies,num_users)    : matrix of user ratings of movies
      R (ndarray (num_movies,num_users)    : matrix, where R(i, j) = 1 if the i-th movies was rated by the j-th user
      lambda_ (float): regularization parameter
    Returns:
      J (float) : Cost
    """
    nm, nu = Y.shape
    J = 0
    ### START CODE HERE ### 
    for j in range(nu):
        w = W[j,:]
        b_j = b[0,j]
        for i in range(nm):
            x = X[i,:]
            y = Y[i,j]
            r = R[i,j]
            J += np.square(r * (np.dot(w,x) + b_j - y ))
            J += lambda_* (np.sum(np.square(W)) + np.sum(np.square(X)))
            
    J = J/2
    ### END CODE HERE ### 

    return J
# Public tests
from public_tests import *
test_cofi_cost_func(cofi_cost_func)

Wrong value. Expected 27, got 540.0. Check the regularization term

Hi!

@SHIVANI_KERAI @F_E
I got your messages, I will answer in a bit!

I have the same problem. One thing I’ve noticed as well is, if you comment out the J += lambda_ * (np.sum…) and just run the J += np.square(r *…), the error says that I got zero instead of 27. For some reason, that line of code is not updating J = 0 it seems. That may be where our problem lies, but I don’t know how to fix it.

Hi @F_E

Put adding the regularization term outside both for loops before you divide J by 2. If you do it like that for each loop you add the full value of the regularization term. In other words, you are adding it multiple times and you have to add it only once at the end of the calculation of J.

2 Likes

Hi!

Can you send me your code in a Direct Message?

Hi @Lucky_Agrawal,

Look carefully at how the cost function J looks like:

The regularization term is outside of the summation over i and j which means that it should be added to the J function after you exit from both for-loops (just before you divide J by 2).

In your code, you added a regularization term inside the for-loop. Therefore you add it multiple times and you should add it only once.

Thanks a lot!
it worked!

Yes, thank you that helped.

Can you send me the code directly so i can understand what is the problem, because i cannot understand the code from here

1 Like