From 3ae12b1286710ce60e4b7027d5a5959fa6522ea2 Mon Sep 17 00:00:00 2001 From: Hitarth <83952958+hitarth50-ce@users.noreply.github.com> Date: Mon, 13 Mar 2023 03:13:17 +0530 Subject: [PATCH] Update 2-svd-nmf-topic-modeling.ipynb In the latest update we have to use _stop_words instead of stop _words. --- 2-svd-nmf-topic-modeling.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-svd-nmf-topic-modeling.ipynb b/2-svd-nmf-topic-modeling.ipynb index f9d50bf..0d02ce2 100644 --- a/2-svd-nmf-topic-modeling.ipynb +++ b/2-svd-nmf-topic-modeling.ipynb @@ -350,9 +350,9 @@ } ], "source": [ - "from sklearn.feature_extraction import stop_words\n", + "from sklearn.feature_extraction import _stop_words\n", "\n", - "sorted(list(stop_words.ENGLISH_STOP_WORDS))[:20]" + "sorted(list(_stop_words.ENGLISH_STOP_WORDS))[:20]" ] }, {