From c10b868a3df60364135c1ce7e4de1b1790dc9ca9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?=
 <45557362+qgallouedec@users.noreply.github.com>
Date: Thu, 20 Oct 2022 20:34:03 +0200
Subject: [PATCH] typo : train -> test

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8827852..29d9117 100644
--- a/README.md
+++ b/README.md
@@ -86,7 +86,7 @@ This database can be obtained at the address https://www.cs.toronto.edu/~kriz/ci
       - `dists` the distance matrix between the train set and the test set,
       - `labels_train` the training labels, and
       - `k` the number of of neighbors.
-    This function must return the predicted labels for the elements of `data_train`.
+    This function must return the predicted labels for the elements of `data_test`.
 
     **Note:** if the memory occupation is too important, you can use several batches for the calculation of the distance matrix (loop on sub-batches of test data).
 3. Write the function `evaluate_knn` taking as parameters:
-- 
GitLab