From 903977dd8f2ec3a51c6d3d99df399462a6bdeb28 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Wed, 5 Dec 2018 19:15:43 -0600 Subject: [PATCH] added missing import of numpy --- daal4py/sklearn/monkeypatch/pairwise.py | 1 + 1 file changed, 1 insertion(+) diff --git a/daal4py/sklearn/monkeypatch/pairwise.py b/daal4py/sklearn/monkeypatch/pairwise.py index cf036b909e..a2fa0f62e5 100644 --- a/daal4py/sklearn/monkeypatch/pairwise.py +++ b/daal4py/sklearn/monkeypatch/pairwise.py @@ -15,6 +15,7 @@ # limitations under the License. #******************************************************************************/ +import numpy as np from functools import partial from sklearn.metrics.pairwise import _parallel_pairwise, _pairwise_callable from sklearn.metrics.pairwise import _VALID_METRICS, PAIRWISE_DISTANCE_FUNCTIONS