You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Chris 1497d68911 Renaming with uppercase of readme files to respect standard 2 years ago
..
audit Renaming with uppercase of readme files to respect standard 2 years ago
README.md Renaming with uppercase of readme files to respect standard 2 years ago

README.md

Exercise 2 Accuracy Scikit-learn

The goal of this exercise is to learn to use sklearn.metrics to compute the accuracy.

  1. Compute the accuracy using sklearn.metrics on y_true and y_pred below:
y_pred = [0, 1, 0, 1, 0, 1, 0]
y_true = [0, 0, 1, 1, 1, 1, 0]