From 0f1ab59a253c13dfd58dbaf1f3a47895ddaaa4ca Mon Sep 17 00:00:00 2001 From: Vyacheslav Morov Date: Wed, 12 Apr 2023 09:51:56 +0200 Subject: [PATCH] Fix check of pillow library in how_to_calculate_embeddings_drift example. --- .../how_to_questions/how_to_calculate_embeddings_drift.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/how_to_questions/how_to_calculate_embeddings_drift.ipynb b/examples/how_to_questions/how_to_calculate_embeddings_drift.ipynb index d1d93bf397..4d2ce9dc5b 100644 --- a/examples/how_to_questions/how_to_calculate_embeddings_drift.ipynb +++ b/examples/how_to_questions/how_to_calculate_embeddings_drift.ipynb @@ -50,7 +50,7 @@ "#you might need to install pillow library to use datasets.fetch_lfw_people() from sklearn\n", "\n", "try:\n", - " import pillow\n", + " import PIL\n", "except ImportError:\n", " !pip install pillow" ]