From 10e253e88eda688adb0c7da1e16a791ed9ddec46 Mon Sep 17 00:00:00 2001 From: Philmod Date: Thu, 15 Dec 2022 13:06:19 -0500 Subject: [PATCH 1/2] Pin scikit-learn-intelex as the newest version breaks --- Dockerfile.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index d0b291bb..973fb293 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -218,7 +218,8 @@ RUN pip install ibis-framework && \ RUN pip install scipy && \ pip install scikit-learn && \ # Scikit-learn accelerated library for x86 - pip install scikit-learn-intelex && \ + # TODO(b/262387811#4) Unpin when the package is fixed. + pip install scikit-learn-intelex==2021.7.1 && \ # HDF5 support pip install h5py && \ pip install biopython && \ From 93e597e0cbcf5b514db7b50b88792b550e590cd4 Mon Sep 17 00:00:00 2001 From: Philmod Date: Thu, 15 Dec 2022 13:57:51 -0500 Subject: [PATCH 2/2] use the last working version from kaggle.com --- Dockerfile.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index 973fb293..c3031919 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -219,7 +219,7 @@ RUN pip install scipy && \ pip install scikit-learn && \ # Scikit-learn accelerated library for x86 # TODO(b/262387811#4) Unpin when the package is fixed. - pip install scikit-learn-intelex==2021.7.1 && \ + pip install scikit-learn-intelex==2021.6.3 && \ # HDF5 support pip install h5py && \ pip install biopython && \