没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
This book evolved from material developed over several years by Anand Rajaraman and Jeff Ullman for a one-quarter course at Stanford. The course CS345A, titled “Web Mining,” was designed as an advanced graduate course,although it has become accessible and interesting to advanced undergraduates.
资源推荐
资源详情
资源评论
Mining
of
Massive
Datasets
Anand Rajaraman
Kosmix, Inc.
Jeffrey D. Ullman
Stanford Univ.
Copyright
c
2010, 2011 Anand Rajaraman and Jeffrey D. Ullman
ii
Preface
This book evolved from ma terial developed over several years by Anand Raja-
raman and Jeff Ullman for a one-quarter course at Stanford. The course
CS345A, titled “Web Mining,” was designed as an advanced graduate course,
although it has become accessible and interesting to advanced undergraduates.
What the Book Is About
At the highest level of description, this book is about data mining. However,
it focuses on data mining of very large amounts of data, that is, data so large
it does not fit in main memory. Because of the emphasis on size, many of our
examples are about the Web or data der ived from the Web. Further, the bo ok
takes an algorithmic point o f view: data mining is about applying algorithms
to data, rather than using data to “train” a machine-learning eng ine of some
sort. The principal topics covered are:
1. Distributed file s ystems and map-reduce as a tool for creating parallel
algorithms that succeed on very large amounts of data.
2. Similarity search, including the key techniques of minhashing and locality-
sensitive hashing.
3. Data-stream processing and specialized a lgorithms for dealing with data
that arrives so fast it must be processed immediately or lost.
4. The technology of search engines, including Google’s PageRank, link-spam
detection, and the hubs-and-authorities approach.
5. Frequent-itemset mining, including association rules, market-baskets, the
A-Priori Algor ithm and its improvements.
6. Algorithms for clustering very large, high-dimensional datasets.
7. Two key problems for Web applica tions: managing advertising and rec-
ommendation systems.
iii
iv PREFACE
Prerequisites
CS345A, although its number indicates an advanced graduate course, has been
found accessible by advanced underg raduates and beginning masters students.
In the future, it is likely that the course will be given a mezzanine-level number.
The prerequisites for CS345A are:
1. The first course in databa se systems, covering application programming
in SQL and other database-related languages such a s XQuery.
2. A sophomore-level course in data structures, algorithms, and discre te
math.
3. A sophomore-level course in software systems, software engineering, and
programming languages.
Exercises
The book contains extensive exercises, with some for almost every section. We
indicate harder exercises or parts of exercis e s with an exclamation point. The
hardest exercises have a double exclamation point.
Support on the Web
You can find materials from past o fferings of CS345A at:
http://infolab.stanford.edu/~ullman/mining/mining.html
There, you will find slides, homework assignments, project requirements, and
in some cases, exams.
Acknowledgements
Cover art is by Scott Ullman. We would like to thank Foto Afrati and Arun
Marathe for critical readings of the draft of this manuscript. Errors were also
reported by Leland Chen, Shrey Gupta, Xie Ke, Haewoon Kwak, Brad Penoff,
Philips Kokoh Prasetyo, Mark Storus, Tim Triche Jr., and Roshan Sumbaly.
The remaining errors are ours, of course.
A. R.
J. D. U.
Palo Alto, CA
June, 2011
Contents
1 Data Mining 1
1.1 What is Data Mining? . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1.1 Statistical Modeling . . . . . . . . . . . . . . . . . . . . . 1
1.1.2 Machine Learning . . . . . . . . . . . . . . . . . . . . . . 2
1.1.3 Computational Approaches to Modeling . . . . . . . . . . 2
1.1.4 Summarization . . . . . . . . . . . . . . . . . . . . . . . . 3
1.1.5 Feature Extraction . . . . . . . . . . . . . . . . . . . . . . 4
1.2 Statistical Limits on Data Mining . . . . . . . . . . . . . . . . . . 4
1.2.1 Total Information Awareness . . . . . . . . . . . . . . . . 5
1.2.2 Bonferroni’s Principle . . . . . . . . . . . . . . . . . . . . 5
1.2.3 An Example of Bonferr oni’s Pr inciple . . . . . . . . . . . 6
1.2.4 Exercises fo r Section 1.2 . . . . . . . . . . . . . . . . . . . 7
1.3 Things Useful to Know . . . . . . . . . . . . . . . . . . . . . . . . 7
1.3.1 Importance of Words in Documents . . . . . . . . . . . . 7
1.3.2 Hash Functions . . . . . . . . . . . . . . . . . . . . . . . . 9
1.3.3 Indexes . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.3.4 Secondary Stor age . . . . . . . . . . . . . . . . . . . . . . 11
1.3.5 The Base of Natura l Log arithms . . . . . . . . . . . . . . 12
1.3.6 Power Laws . . . . . . . . . . . . . . . . . . . . . . . . . . 13
1.3.7 Exercises fo r Section 1.3 . . . . . . . . . . . . . . . . . . . 15
1.4 Outline of the Book . . . . . . . . . . . . . . . . . . . . . . . . . 15
1.5 Summary of Chapter 1 . . . . . . . . . . . . . . . . . . . . . . . . 17
1.6 References for Chapter 1 . . . . . . . . . . . . . . . . . . . . . . . 17
2 Large-Scale File Systems and Map-Reduce 19
2.1 Distributed File Systems . . . . . . . . . . . . . . . . . . . . . . . 20
2.1.1 Physical Organization of Compute Nodes . . . . . . . . . 20
2.1.2 Large-Scale File-System Or ganization . . . . . . . . . . . 21
2.2 Map-Reduce . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
2.2.1 The Map Tasks . . . . . . . . . . . . . . . . . . . . . . . . 23
2.2.2 Grouping and Aggregation . . . . . . . . . . . . . . . . . 24
2.2.3 The Reduce Tasks . . . . . . . . . . . . . . . . . . . . . . 2 4
2.2.4 Combiners . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
v
剩余456页未读,继续阅读
资源评论
juliya1983
- 粉丝: 0
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于STM32F103C8T6的4g模块(air724ug)
- 基于Java技术的ASC学业支持中心并行项目开发设计源码
- 基于Java和微信支付的wxmall开源卖票商城设计源码
- 基于Java和前端技术的东软环保公众监督系统设计源码
- 基于Python、HTML、CSS的crawlerdemo软件工程实训爬虫设计源码
- 基于多智能体深度强化学习的边缘协同任务卸载方法设计源码
- 基于BS架构的Java、Vue、JavaScript、CSS、HTML整合的毕业设计源码
- 基于昇腾硬件加速的AI大模型性能优化设计源码
- 基于Plpgsql与Python FastAPI的mini-rbac-serve权限管理系统后端设计源码
- 基于SpringBoot的轻量级Java快速开发源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功