作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法导入 category_encoders python 3虚拟环境中jupyter notebook中的模块。
错误
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-15-86725efc8d1e> in <module>()
9 from plotly import graph_objs
10 from datetime import datetime
---> 11 import category_encoders as ce
12
13 import sklearn
ModuleNotFoundError: No module named 'category_encoders'
/opt/virtual_env/py3/bin/pip
Name: category-encoders
Version: 1.3.0
Summary: A collection sklearn transformers to encode categorical variables as numeric
Home-page: https://github.com/wdm0006/categorical_encoding
Author: Will McGinnis
Author-email: will@pedalwrencher.com
License: BSD
Location: /opt/virtual_env/py3/lib/python3.6/site-packages
Requires: numpy, pandas, statsmodels, scikit-learn, patsy, scipy
Required-by:
Package Version
------------------- -------
absl-py 0.7.0
astor 0.7.1
backcall 0.1.0
category-encoders 1.3.0
cycler 0.10.0
最佳答案
pip install --upgrade category_encoders
现在,
重启你的内核import category_encoders as...
等等等等
还,
您可以查看 sk-learn 的预处理类 CategoricalEncoder ...from sklearn.preprocessing import CategoricalEncoder
从这里获取 sk-learn,pip install git+git://github.com/scikit-learn/scikit-learn.git
或简单地说pip install sklearn
关于python - 无法导入 category_encoders 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54265717/
我无法导入 category_encoders python 3虚拟环境中jupyter notebook中的模块。 错误 --------------------------------------
我有一个数据集,其中包含 100 多个国家/地区。我想将这些包含在 XGBoost 模型中以进行分类预测。我知道 One Hot Encoding 是解决此问题的首选流程,但我宁愿做一些不会增加太多维
我是一名优秀的程序员,十分优秀!