-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from jiangzhonglian/master
添加6.SVM视频中2个问题的注释
- Loading branch information
Showing
7 changed files
with
238 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# 大数据与MapReduce | ||
|
||
> 本章内容 | ||
* MapReduce | ||
* Python中Hadoop流的使用 | ||
* 使用mrjob库将MapReduce自动化 | ||
* 利用Pegasos算法并行训练支持向量机 | ||
|
||
## MapReduce:分布式计算的框架 | ||
|
||
``` | ||
优点:可在短时间内完成大量工作。 | ||
缺点:算法必须经过重写,需要对系统工程有一定的理解。 | ||
适用数据类型:数值型和标称型数据。 | ||
``` | ||
|
||
* MapReduce集群的示意图 | ||
![MapReduce集群的示意图](/images/15.BigData_MapReduce/MR_1_cluster.jpg) | ||
|
||
> 关于MapRduce的学习要点 | ||
* 主节点控制MapReduce的作业流程 | ||
* MapReduce的作业可以分成map任务和reduce任务 | ||
* map任务之间不做数据交流,reduce任务也一样 | ||
* 在map和reduce阶段中间,有一个sort和combine阶段 | ||
* 数据被重复存放在不同的机器上,以防止某个机器实效 | ||
* mapper和reducer传输的数据形式为key/value对 | ||
|
||
## Hadoop流 | ||
|
||
## 在Amazon网络服务商运行Hadoop程序 | ||
|
||
## MapReduce上的机器学习 | ||
|
||
## 在Python中使用mrjob来自动化MapReduce | ||
|
||
## 示例:分布式SVM的Pegasos算法 | ||
|
||
## 你真的需要MapReduce吗? | ||
|
||
## 本章小节 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.