Peixun.net > 直播 > 人工智能 > 机器学习 > 菊安酱的《机器学习实战》

菊安酱的《机器学习实战》

满意程度:
课时:0 分钟| 2409人学习 分享 收藏
每周一晚20:00,菊安酱手把手教你敲python代码,带你手动实现机器学习算法。持续连载12期,快来围观吧~

菊安酱的《机器学习实战》

第1期 K—近邻算法

K—近邻算法立即播放

第2期 决策树

决策树(1)立即播放

决策树(2)立即播放

第3期 朴素贝叶斯算法

朴素贝叶斯(1)立即播放

朴素贝叶斯(2)立即播放

朴素贝叶斯(3)立即播放

第4期 Logistic回归

Logistic回归(1)立即播放

Logistic回归(2)立即播放

Logistic回归(3)立即播放

第5期 支持向量机

支持向量机(1)立即播放

支持向量机(2)立即播放

支持向量机(3)立即播放

第6期 Adaboost 算法

Adaboost(1)立即播放

Adaboost(2)立即播放

Adaboost(3)立即播放

第7期 线性回归

线性回归(1)立即播放

线性回归(2)立即播放

线性回归(3)立即播放

第8期 树回归

树回归(1)立即播放

树回归(2)立即播放

树回归(3)立即播放

第9期 Kmeans聚类算法

K-均值聚类(1)立即播放

K-均值聚类(2)立即播放

K-均值聚类(3)立即播放

第10期 Apriori 算法

Apriori 算法(1)立即播放

Apriori 算法(2)立即播放

Apriori 算法(3)立即播放

第11期 FP-growth算法

FP-growth算法(1)立即播放

FP-growth算法(2)立即播放

FP-growth算法(3)立即播放

第12期 降维算法之PCA&SVD

降维算法之PCA&SVD(1)立即播放

降维算法之PCA&SVD(2)立即播放

降维算法之PCA&SVD(3)立即播放


课程介绍

   是一个专门为机器学习爱好者开设的直播间


直播时间

   每周一晚20:00手把手教你敲python代码,带你手动实现机器学习算法


直播内容

   算法基本原理+机器学习算法的python代码实现+实例


直播周期

   每周一期完整的算法直播课,持续连载12期,共计三个月


   90天,菊安酱带你码机器学习实战代码,快来一起学习吧~



【更多完整视频请点击】http://edu.cda.cn/course/1168?utm_source=cda_cn_mo


扫描二维码,回“k”进入学习交流群。










emma0923 2020-11-24 14:07

请问 哪里可以看到课件 。 回复(0)
回复 emma0923 数学公式

提交

提交

smart817 2020-09-13 22:01

哪里有课件下载 。 回复(0)
回复 smart817 数学公式

提交

提交

偷吃了猫的鱼 2020-07-27 15:10

哪里有课件下载啊 。 回复(0)
回复 偷吃了猫的鱼 数学公式

提交

提交

xjd0316 2020-06-16 19:37

哪里有课件下载 。 回复(0)
回复 xjd0316 数学公式

提交

提交

木兮羊 2020-05-17 22:14

课件下载为什么点不动呢? 。 回复(2)

张小飞bb 2020-05-25 08:47

可见在哪儿 评论(0)
评论 张小飞bb 数学公式

提交

提交

张小飞bb 2020-05-25 08:56

课件在哪里哇?哥哥 评论(0)
评论 张小飞bb 数学公式

提交

提交
回复 木兮羊 数学公式

提交

提交

shangwuda 2020-05-07 15:39

课件是在哪里呢? 。 回复(0)
回复 shangwuda 数学公式

提交

提交

qidaihuijia123 2019-03-21 21:22

您好,您在Apriori(3)中提到的L2生成C3的过程,我有些不理解。您所提到的C3中应该有{1,2,3}是因为在不满足支持度被省略了,还是应该理解为在剪枝过程中被剪掉了? 。 回复(0)
回复 qidaihuijia123 数学公式

提交

提交

tina0430 2019-03-13 21:48

你好,我到“绘制树模型”这一步的时候,报错。具体内容见下:麻烦帮忙解答下,谢谢
代码:
#绘制树模型
clf = DecisionTreeClassifier()
clf = clf.fit(Xtrain, Ytrain)
tree.export_graphviz(clf)
dot_data = tree.export_graphviz(clf, out_file=None)
graphviz.Source(dot_data)

报错:
FileNotFoundError Traceback (most recent call last)
~\AppData\Local\Continuum\anaconda3\lib\site-packages\graphviz\backend.py in run(cmd, input, capture_output, check, quiet, **kwargs)
146 try:
--> 147 proc = subprocess.Popen(cmd, startupinfo=get_startupinfo(), **kwargs)
148 except OSError as e:

~\AppData\Local\Continuum\anaconda3\lib\subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors)
708 errread, errwrite,
--> 709 restore_signals, start_new_session)
710 except:

~\AppData\Local\Continuum\anaconda3\lib\subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, unused_restore_signals, unused_start_new_session)
996 os.fspath(cwd) if cwd is not None else None,
--> 997 startupinfo)
998 finally:

FileNotFoundError: [WinError 2] 系统找不到指定的文件。

During handling of the above exception, another exception occurred:

ExecutableNotFound Traceback (most recent call last)
~\AppData\Local\Continuum\anaconda3\lib\site-packages\IPython\core\formatters.py in __call__(self, obj)
334 method = get_real_method(obj, self.print_method)
335 if method is not None:
--> 336 return method()
337 return None
338 else:

~\AppData\Local\Continuum\anaconda3\lib\site-packages\graphviz\files.py in _repr_svg_(self)
104
105 def _repr_svg_(self):
--> 106 return self.pipe(format='svg').decode(self._encoding)
107
108 def pipe(self, format=None, renderer=None, formatter=None):

~\AppData\Local\Continuum\anaconda3\lib\site-packages\graphviz\files.py in pipe(self, format, renderer, formatter)
126 data = text_type(self.source).encode(self._encoding)
127
--> 128 out = backend.pipe(self._engine, format, data, renderer, formatter)
129
130 return out

~\AppData\Local\Continuum\anaconda3\lib\site-packages\graphviz\backend.py in pipe(engine, format, data, renderer, formatter, quiet)
204 """
205 cmd, _ = command(engine, format, None, renderer, formatter)
--> 206 out, _ = run(cmd, input=data, capture_output=True, check=True, quiet=quiet)
207 return out
208

~\AppData\Local\Continuum\anaconda3\lib\site-packages\graphviz\backend.py in run(cmd, input, capture_output, check, quiet, **kwargs)
148 except OSError as e:
149 if e.errno == errno.ENOENT:
--> 150 raise ExecutableNotFound(cmd)
151 else: # pragma: no cover
152 raise

ExecutableNotFound: failed to execute ['dot', '-Tsvg'], make sure the Graphviz executables are on your systems' PATH

Out[65]:
<graphviz.files.Source at 0x15459320> 。
回复(1)

ljh725 2019-10-12 14:32

你没有安装Graphviz,或者没有添加到环境变量PATH 评论(0)
评论 ljh725 数学公式

提交

提交
回复 tina0430 数学公式

提交

提交

课程订阅

讲师介绍


Peixun.net

菊安酱的《机器学习实战》

请认真填写以下信息,方便为您服务
  • 姓名:
  • 电话:
  • 邮箱:
  • 备注:
  • 邀请码:
  • 您还可以选择 登录 或者 注册 更方便您管理课程。

Peixun.net

您关于:

菊安酱的《机器学习实战》

的报名信息已经提交成功。

去购物车结算
您可以选择 登录 或者 注册 更方便您管理课程。
回头再说

邮件已发送!

已成功发送邮件到您注册的邮箱 请前往查询并点击链接重置密码

有待解答的问题

3 名学员对您的课程提问,需要您作出回答。 现在就去