人工智能
文章平均质量分 71
keq_keq
fighting
展开
-
Please use the NLTK Downloader to obtain the resource
nltk(natural language toolkit)是python的自然语言处理工具包在环境中用 >>pip install nltk 之后,对于一些特定的包还需要进行下载才能调用。例如以下报错:LookupError: ********************************************************************** ...原创 2020-03-18 15:30:00 · 5512 阅读 · 0 评论 -
You are using pip version 9.0.1, however version 20.0.2 is available. You should consider upgrading
当输入提示的python -m pip install --upgrade pip指令出现如下情况:可以尝试输入:python -mpip --trusted-hostpypi.python.orginstall --upgradepip其中 -m参数的意思是将Python模块当做脚本运行。--trusted-host是表示信任该站点资源。...原创 2020-03-12 22:20:34 · 2108 阅读 · 0 评论 -
决策树+代码实现
“信息熵”(information entropy)是度量样本集合纯度的一种常用指标信息熵计算公式:其中 为集合中第K类属性所占样本的比例。Ent(D)的值越小,则D的纯度越高 假定离散属性a有x个可能的取值{a1,a2,…,ax},若使用a来对样本集D进行划分,则会产生x个分支节点,其中第x个分支结点包含了D中所有在属性a上取值为ax的样本,记为Dx。 则根据上述...原创 2018-12-20 01:39:21 · 7382 阅读 · 0 评论