Hi, I have implemented one_hot_matrix like this and it passed all test without any error:
def one_hot_matrix(label, depth):
[Removed solution code]
But when I got got error in this while running(PS I havent changed anything )
new_y_test = y_test.map(one_hot_matrix)
new_y_train = y_train.map(one_hot_matrix)
Error is
TypeError: tf__one_hot_matrix() missing 1 required positional argument: ‘depth’