ImportError: невозможно импортировать имя countVectorizer из sklearn.feature_extraction.text - PullRequest
0 голосов
/ 02 мая 2020

КОД

import numpy as np
from sklearn.feature_extraction.text import countVectorizer
count=countVectorizer
docs=np.array(['The sun is shinning',
               'The weather is sweet',
               'The sun is shinning,The weather is sweet, and one and one is two'])
bag= count.fit_transform(docs)

ОШИБКА Вывод

ImportError                               Traceback (most recent call last)
<ipython-input-1-e322748c3b4c> in <module>
      1 import numpy as np
----> 2 from sklearn.feature_extraction.text import countVectorizer
      3 count=countVectorizer
      4 docs=np.array(['The sun is shinning',
      5                'The weather is sweet',

ImportError: cannot import name 'countVectorizer' from 'sklearn.feature_extraction.text' (C:\ProgramData\Anaconda3\lib\site-packages\sklearn\feature_extraction\text.py)

оператор Я получаю эту ошибку, помогите мне Я использую ноутбук Jupyter в подсказке Anaconda Navigator. Я установил последнюю версию scikit-learn, но также получил ту же ошибку импорта. Затем также установил и удалил scikit-learn с помощью командной строки Anaconda

...