question archive Step 4: Calculate the accuracy of the algorithm Use the two functions you implemented to calculate the accuracy for every cluster and the whole algorithm, defined as above
Subject:Computer SciencePrice: Bought3
Step 4: Calculate the accuracy of the algorithm Use the two functions you implemented to calculate the accuracy for every cluster and the whole algorithm, defined as above. Implement the following function in analysis.py: def accuracy(data, labels, centroids): Calculate the accuracy of the algorithm. You should use update_assignment and majority_count (that you previously implemented) Arguments: data: a list of lists representing all data points labels: a list of ints representing all data labels centroids: the centroid dictionary