freeCodeCamp/guide/chinese/machine-learning/unsupervised-learning/index.md

25 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Unsupervised Learning
localeTitle: 无监督学习
---
#### 推荐阅读:
* https://en.wikipedia.org/wiki/Unsupervised\_learning
* https://stackoverflow.com/a/1854449/6873133
* http://mlg.eng.cam.ac.uk/zoubin/papers/ul.pdf
#### 条款草案:
什么是无监督学习?
无监督学习使我们能够在很少或根本不知道我们的结果应该是什么样的情况下解决问题。我们可以从数据中导出结构,我们不一定知道变量的影响。
类型:
聚类用于探索性数据分析以查找隐藏的模式或数据分组。收集1,000,000个不同的基因并找到一种方法将这些基因自动分组成不同的相似或通过不同变量相关的组例如寿命位置角色等。
无监督学习的方法包括:
集群。 K均值。混合模型。层次聚类异常检测。神经网络。 Hebbian学习。生成性对抗网络。用于学习潜变量模型的方法如。期望最大化算法EM矩的方法
几个例子: 假设您有电子商务网站的数据。你有一份他们上周在网上订购的人和物品清单。您现在可以使用聚类算法并在数据中查找模式,预测购买趋势并根据趋势制定业务策略。