From 1a8c8a6d160f3745c0e69194f05c02327a34f3d4 Mon Sep 17 00:00:00 2001 From: Yang Zhang Date: Mon, 19 Feb 2018 22:04:17 -0500 Subject: [PATCH] fix typo --- Python/ml_metrics/average_precision.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ml_metrics/average_precision.py b/Python/ml_metrics/average_precision.py index e18297d..aa5c672 100644 --- a/Python/ml_metrics/average_precision.py +++ b/Python/ml_metrics/average_precision.py @@ -4,7 +4,7 @@ def apk(actual, predicted, k=10): """ Computes the average precision at k. - This function computes the average prescision at k between two lists of + This function computes the average precision at k between two lists of items. Parameters