信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 pdf mobi 下载 kindle 115盘 chm 阿里云 rb

信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作电子书下载地址
- 文件名
- [epub 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 epub格式电子书
- [azw3 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 azw3格式电子书
- [pdf 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 pdf格式电子书
- [txt 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 txt格式电子书
- [mobi 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 mobi格式电子书
- [word 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 word格式电子书
- [kindle 下载] 信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作 kindle格式电子书
寄语:
新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!
内容简介:
本书是“信息检索”课程的很好教材,书中对信息检索的概念、原理和算法进行了详细介绍,内容主要包括检索策略、检索实用工具、跨语言信息检索、查询处理、集成结构化及数据和文本、并行信息检索以及分布式信息检索等,并给出了阐述算法的大量实例。
本书有一定的深度和广度,而且所有的内容都用当前的技术阐述,是高等院校计算机及信息管理等相关专业本科生和研究生的理想教材,对信息检索领域的科研和技术人员也是很好的参考书。
书籍目录:
1. INTRODUCTION
2. RETRIEVAL STRATEGIES
2.1 Vector Space Model
2.2 Probabilistic Retrieval Strategies
2.3 Language Models
2.4 Inference Networks
2.5 Extended Boolean Retrieval
2.6 Latent Semantic Indexing
2.7 Neural Networks
2.8 Genetic Algorithms
2.9 Fuzzy Set Retrieval
2.10 Summary
2.11 Exercises
3. RETRIEVAL UTILITIES
3.1 Relevance Feedback
3.2 Clustering
3.3 Passage-based Retrieval
3.4 N-grams
3.5 Regression Analysis
3.6 Thesauri
3.7 Semantic Networks
3.8 Parsing
3.9 Summary
3.10 Exercises
4. CROSS-LANGUAGE INFORMATION RETRIEVAL
4.1 Introduction
4.2 Crossing the Language Barrier
4.3 Cross-Language Retrieval Strategies
4.4 Cross Language Utilities
4.5 Summary
4.6 Exercises
5. EFFICIENCY
5.1 Inverted Index
5.2 Query Processing
5.3 Signature Files
5.4 Duplicate Document Detection
5.5 Summary
5.6 Exercises
6. INTEGRATING STRUCTURED DATA AND TEXT
6.1 Review of the Relational Model
6.2 A Historical Progression
6.3 Information Retrieval as a Relational Application
*** Semi-Structured Search using a Relational Schema
6.5 Multi-dimensional Data Model
6.6 Mediators
6.7 Summary
6.8 Exercises
7. PARALLEL INFORMATION RETRIEVAL
7.1 Parallel Text Scanning
7.2 Parallel Indexing
7.3 Clustering and Classification
7.4 Large Parallel Systems
7.5 Summary
7.6 Exercises
8. DISTRIBUTED INFORMATION RETRIEVAL
8.1 A Theoretical Model of Distributed Retrieval
8.2 Web Search
8.3 Result Fusion
8.4 Peer-to-Peer Information Systems
8.5 Other Architectures
8.6 Summary
8.7 Exercises
9. SUMMARY AND FUTURE DIRECTIONS
References
Index
作者介绍:
格罗斯曼(David A.Grossman),佐治亚梅森大学博士。现在伊利诺伊理工大学计算机系任教。曾在美国政府部门不错技术服务中心和研究发展办公室担任项目经理。主要研究领域包括信息检索、结构化与非结构化数据集成以及数据挖掘。
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
3.4.1 D'Amore and Mah
Initial information retrieval research focused on n-grams as presented in[D'Amore and Mah, 1985]. The motivation behind their work was the fact thatit is difficult to develop mathematical models for terms since the potential fora term that has not been seen before is infinite. With n-grams, only a fixednumber of n-grams can exist for a given value of n. A mathematical modelwas developed to estimate the noise in indexing and to determine appropriatedocument similarity measures. D'Amore and Mah's method replaces terms with n-grams in the vector spacemodel. The only remaining issue is computing the weights for each n-gram.Instead of simply using n-gram frequencies, a scaling method is used to nor-malize the length of the document. D'Amore and Mah's contention was that alarge document contains more n-grams than a small document, so it should bescaled based on its length. To compute the weights for a given n-gram, D'Amore and Mah estimatedthe number of occurrences of an n-gram in a document. The first simplifyingassumption was that n-grams occur with equal likelihood and follow a binomialdistribution. Hence, it was no more likely for n-gram "ABC" to occur than"DEE" The Zipfian distribution that is widely accepted for terms is not true forn-grams. D'Amore and Mah noted that n-grams are not equally likely to occur,but the removal of frequently occurring terms from the document collectionresulted in n-grams that follow a more binomial distribution than the terms. D'Amore and Mah computed the expected number of occurrences of an n-gram in a particular document. This is the product of the number of n-gramsin the document (the document length) and the probability that the n-gramoccurs. The n-gram's probability of occurrence is computed as the ratio ofits number of occurrences to the total number of n-grams in the document.D'Amore and Mah continued their application of the bino
……
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
编辑推荐
随着Google、百度等搜索引擎公司的崛起,信息检索已经成为令人振奋的热门研究领域。
本书从发展的角度描述了ad hoc信息检索,讨论了用来实现大规模数据检索的近期新算法,详细介绍了推理网络和系统的效率,并且对每种方法都给出了详细可行的实例。此外,本书整合了结构化和非结构化数据的处理技术,这是其他教材所不具备的。
第2版新增加了IR语言模型和跨语言检索,还讨论了许多当前的热点话题,如XML、P2P信息检索、文本查重、文档并行聚类、不同检索策略的融合、信息中间表示等。
本书兼顾了学科广度和主题深度,把握了近期新的发展趋势,是信息检索领域的一本名著,更为许多有名高校(如美国普林斯顿大学、罗格斯大学)采用为教材。
媒体评论
“本书涉及近期新的研究成果,语言经得起推敲,还精心准备了大量的实例说明,适合作为研究生和本科生信息检索课程的优选教材。” ——美国马萨诸塞大学阿默斯特校区计算机系杰出教授 W.Bruce Croft “推荐把本书作为计算机科学专业学生的优选教材,同时也适用于SE0专业人员和Web开发者阅读,将搜索技术,算法和启发式方法运用于他们的项目中。” ——信息技术与服务顾问 E.Garcia博士
书籍介绍
《信息检索:算法与启发式方法(英文版·第2版)》是“信息检索”课程的优秀教材,书中对信息检索的概念、原理和算法进行了详细介绍,内容主要包括检索策略、检索实用工具、跨语言信息检索、查询处理、集成结构化及数据和文本、并行信息检索以及分布式信息检索等,并给出了阐述算法的大量实例。
《信息检索:算法与启发式方法(英文版·第2版)》有一定的深度和广度,而且所有的内容都用当前的技术阐述,是高等院校计算机及信息管理等相关专业本科生和研究生的理想教材,对信息检索领域的科研和技术人员也是很好的参考书。
网站评分
书籍多样性:7分
书籍信息完全性:4分
网站更新速度:8分
使用便利性:9分
书籍清晰度:7分
书籍格式兼容性:4分
是否包含广告:4分
加载速度:9分
安全性:4分
稳定性:8分
搜索功能:6分
下载便捷性:5分
下载点评
- 傻瓜式服务(128+)
- 推荐购买(487+)
- 图书多(209+)
- 速度慢(574+)
- 强烈推荐(187+)
- epub(564+)
下载评价
- 网友 丁***菱:
好好好好好好好好好好好好好好好好好好好好好好好好好
- 网友 益***琴:
好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。
- 网友 寇***音:
好,真的挺使用的!
- 网友 权***波:
收费就是好,还可以多种搜索,实在不行直接留言,24小时没发到你邮箱自动退款的!
- 网友 索***宸:
书的质量很好。资源多
- 网友 车***波:
很好,下载出来的内容没有乱码。
- 网友 常***翠:
哈哈哈哈哈哈
- 网友 权***颜:
下载地址、格式选择、下载方式都还挺多的
- 网友 冯***丽:
卡的不行啊
- 网友 孙***美:
加油!支持一下!不错,好用。大家可以去试一下哦
- 网友 养***秋:
我是新来的考古学家
- 网友 习***蓉:
品相完美
- 网友 冯***卉:
听说内置一千多万的书籍,不知道真假的
喜欢"信息检索:算法与启发式方法(英文版·第2版) (美)格罗斯曼,(美)弗里德 著 著作"的人也看了
小学数学应用题解题高手苏教+计算高手苏教+默写高手语文人教英语译林 五年级下册 2024年春季新版教材同步思维拓展易错期末复习练习题(套装共4册) pdf mobi 下载 kindle 115盘 chm 阿里云 rb
象棋记谱本 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
9787208115606 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
比较心理学辞典【可开电子发票】 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
网络空间治理前沿(第1卷) 上海交通大学出版社 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
【微瑕疵,书脊磕碰】丛林虎 弗雷德里克·贝雷莫 文化发展出版无字图像小说 幼儿 绘画/漫画/连环图画/卡通故事 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
点知教育 2017全国各省市高考模拟试卷汇编及详解—化学 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
University of Ge***ia Ga 2007 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
当好秘书100诀窍 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
医道江湖:中医入门验案120篇 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 2017秋尖子生单元突破--七年级思想品德上(人教版)(R版) pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 为什么我能3天卖1辆宝马 [日]饭尾昭夫 马慧【正版保证】 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 2013中公版历年真题精解 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 历史的回音:一八0师实战录 9787514340747 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 走出地球村 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 物理化学教学与学习指南 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 【中商原版】文创真实性 港台艺术原版 陈坤宏 巨流图书出版 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 成交高手:大推销员的成交法则和秘诀 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 期刊报纸设计/版式设计精品艺术丛书 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
- 加拿大当代顶级建筑师 pdf mobi 下载 kindle 115盘 chm 阿里云 rb
书籍真实打分
故事情节:4分
人物塑造:9分
主题深度:3分
文字风格:9分
语言运用:8分
文笔流畅:8分
思想传递:4分
知识深度:4分
知识广度:3分
实用性:6分
章节划分:5分
结构布局:3分
新颖与独特:4分
情感共鸣:4分
引人入胜:6分
现实相关:4分
沉浸感:5分
事实准确性:3分
文化贡献:3分