Question: So this is my code conf _ matrix = np . zeros ( ( 1 0 , 1 0 ) , dtype = int )

So this is my code conf_matrix = np.zeros((10,10), dtype=int)
for i in range(len(test_labels)):
true_label=test_labels[i]
predicted_label = NN_classifier(test_data[i, :])
conf_matrix[trye_label,predicted_labe]+=1
print(conf_matrix) and my TA wants me to update matrix inside of the loop and i dont know how to do that

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!