第 1/6 張圖片






圖片庫
第 1/6 張圖片






有類似物品要出售?
Natural Language Processing with Python : Analyzing Text with the Natural...
C $13.99
大約HK$ 78.88
或講價
狀況:
良好
曾被閱讀過的書籍,但狀況良好。封面有諸如磨痕等在內的極少損壞,但沒有穿孔或破損。精裝本書籍可能沒有書皮。封皮稍有磨損。絕大多數書頁未受損,存在極少的褶皺和破損。使用鉛筆標注文字處極少,未對文字標記,無留白處書寫文字。沒有缺頁。
Oops! Looks like we're having trouble connecting to our server.
Refresh your browser window to try again.
運送:
C $125.69(大約 HK$ 708.67) FedEx International Economy.
所在地:Barrie, Ontario, 加拿大
送達日期:
估計於 9月15日 (星期一)至 9月23日 (星期二)之間送達 運送地點 94104
退貨:
不可退貨.
保障:
請參閱物品說明或聯絡賣家以取得詳細資料。閱覽全部詳情查看保障詳情
(不符合「eBay 買家保障方案」資格)
賣家必須承擔此刊登物品的所有責任。
eBay 物品編號:186627933373
物品細節
- 物品狀況
- Subject Area
- Data Analysis
- Publication Name
- O'Reilly Media
- Publisher
- O'Reilly Media
- Item Length
- 23cm
- Subject
- Computer Science
- Publication Year
- 2009
- Type
- Textbook
- Format
- Trade Paperback
- Unit Type
- Unit
- Language
- English
- Item Height
- 2.5cm
- Educational Level
- Vocational School
- Personalized
- No
- Level
- Intermediate
- Features
- 1st Edition
- Country/Region of Manufacture
- United States
- Unit Quantity
- 1
- Item Width
- 17.5
- Item Weight
- 600g
- Number of Pages
- 479
- ISBN
- 9780596516499
關於產品
Product Identifiers
Publisher
O'reilly Media, Incorporated
ISBN-10
0596516495
ISBN-13
9780596516499
eBay Product ID (ePID)
71895926
Product Key Features
Number of Pages
502 Pages
Publication Name
Natural Language Processing with Python : Analyzing Text with The Natural Language Toolkit
Language
English
Subject
Programming Languages / General, Natural Language Processing, General, Programming Languages / Python
Publication Year
2009
Type
Textbook
Subject Area
Computers
Format
Trade Paperback
Dimensions
Item Height
1 in
Item Weight
30.1 Oz
Item Length
9.3 in
Item Width
7.3 in
Additional Product Features
Intended Audience
Scholarly & Professional
Illustrated
Yes
Table Of Content
Preface; Audience; Emphasis; What You Will Learn; Organization; Why Python?; Software Requirements; Natural Language Toolkit (NLTK); For Instructors; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments; Royalties;Chapter 1: Language Processing and Python; 1.1 Computing with Language: Texts and Words; 1.2 A Closer Look at Python: Texts as Lists of Words; 1.3 Computing with Language: Simple Statistics; 1.4 Back to Python: Making Decisions and Taking Control; 1.5 Automatic Natural Language Understanding; 1.6 Summary; 1.7 Further Reading; 1.8 Exercises;Chapter 2: Accessing Text Corpora and Lexical Resources; 2.1 Accessing Text Corpora; 2.2 Conditional Frequency Distributions; 2.3 More Python: Reusing Code; 2.4 Lexical Resources; 2.5 WordNet; 2.6 Summary; 2.7 Further Reading; 2.8 Exercises;Chapter 3: Processing Raw Text; 3.1 Accessing Text from the Web and from Disk; 3.2 Strings: Text Processing at the Lowest Level; 3.3 Text Processing with Unicode; 3.4 Regular Expressions for Detecting Word Patterns; 3.5 Useful Applications of Regular Expressions; 3.6 Normalizing Text; 3.7 Regular Expressions for Tokenizing Text; 3.8 Segmentation; 3.9 Formatting: From Lists to Strings; 3.10 Summary; 3.11 Further Reading; 3.12 Exercises;Chapter 4: Writing Structured Programs; 4.1 Back to the Basics; 4.2 Sequences; 4.3 Questions of Style; 4.4 Functions: The Foundation of Structured Programming; 4.5 Doing More with Functions; 4.6 Program Development; 4.7 Algorithm Design; 4.8 A Sample of Python Libraries; 4.9 Summary; 4.10 Further Reading; 4.11 Exercises;Chapter 5: Categorizing and Tagging Words; 5.1 Using a Tagger; 5.2 Tagged Corpora; 5.3 Mapping Words to Properties Using Python Dictionaries; 5.4 Automatic Tagging; 5.5 N-Gram Tagging; 5.6 Transformation-Based Tagging; 5.7 How to Determine the Category of a Word; 5.8 Summary; 5.9 Further Reading; 5.10 Exercises;Chapter 6: Learning to Classify Text; 6.1 Supervised Classification; 6.2 Further Examples of Supervised Classification; 6.3 Evaluation; 6.4 Decision Trees; 6.5 Naive Bayes Classifiers; 6.6 Maximum Entropy Classifiers; 6.7 Modeling Linguistic Patterns; 6.8 Summary; 6.9 Further Reading; 6.10 Exercises;Chapter 7: Extracting Information from Text; 7.1 Information Extraction; 7.2 Chunking; 7.3 Developing and Evaluating Chunkers; 7.4 Recursion in Linguistic Structure; 7.5 Named Entity Recognition; 7.6 Relation Extraction; 7.7 Summary; 7.8 Further Reading; 7.9 Exercises;Chapter 8: Analyzing Sentence Structure; 8.1 Some Grammatical Dilemmas; 8.2 What's the Use of Syntax?; 8.3 Context-Free Grammar; 8.4 Parsing with Context-Free Grammar; 8.5 Dependencies and Dependency Grammar; 8.6 Grammar Development; 8.7 Summary; 8.8 Further Reading; 8.9 Exercises;Chapter 9: Building Feature-Based Grammars; 9.1 Grammatical Features; 9.2 Processing Feature Structures; 9.3 Extending a Feature-Based Grammar; 9.4 Summary; 9.5 Further Reading; 9.6 Exercises;Chapter 10: Analyzing the Meaning of Sentences; 10.1 Natural Language Understanding; 10.2 Propositional Logic; 10.3 First-Order Logic; 10.4 The Semantics of English Sentences; 10.5 Discourse Semantics; 10.6 Summary; 10.7 Further Reading; 10.8 Exercises;Chapter 11: Managing Linguistic Data; 11.1 Corpus Structure: A Case Study; 11.2 The Life Cycle of a Corpus; 11.3 Acquiring Data; 11.4 Working with XML; 11.5 Working with Toolbox Data; 11.6 Describing Language Resources Using OLAC Metadata; 11.7 Summary; 11.8 Further Reading; 11.9 Exercises;Afterword: The Language Challenge; Language Processing Versus Symbol Processing; Contemporary Philosophical Divides; NLTK Roadmap; Envoi...;Bibliography;NLTK Index;General Index;Colophon;
Synopsis
This book offers a highly accessible introduction to natural language processing, the field that supports a variety of language technologies, from predictive text and email filtering to automatic summarization and translation. With it, you'll learn how to write Python programs that work with large collections of unstructured text. You'll access richly annotated datasets using a comprehensive range of linguistic data structures, and you'll understand the main algorithms for analyzing the content and structure of written communication. Packed with examples and exercises, Natural Language Processing with Python will help you: Extract information from unstructured text, either to guess the topic or identify "named entities" Analyze linguistic structure in text, including parsing and semantic analysis Access popular linguistic databases, including WordNet and treebanks Integrate techniques drawn from fields as diverse as linguistics and artificial intelligence This book will help you gain practical skills in natural language processing using the Python programming language and the Natural Language Toolkit (NLTK) open source library. If you're interested in developing web applications, analyzing multilingual news sources, or documenting endangered languages -- or if you're simply curious to have a programmer's perspective on how human language works -- you'll find Natural Language Processing with Python both fascinating and immensely useful., This book offers a highly accessible introduction to natural language processing, the field that supports a variety of language technologies, from predictive text and email filtering to automatic summarization and translation. With it, you'll learn how to write Python programs that work with large collections of unstructured text. You'll access richly annotated datasets using a comprehensive range of linguistic data structures, and you'll understand the main algorithms for analyzing the content and structure of written communication.Packed with examples and exercises, Natural Language Processing with Python will help you: Extract information from unstructured text, either to guess the topic or identify named entities Analyze linguistic structure in text, including parsing and semantic analysis Access popular linguistic databases, including WordNet and treebanks Integrate techniques drawn from fields as diverse as linguistics and artificial intelligence This book will help you gain practical skills in natural language processing using the Python programming language and the Natural Language Toolkit (NLTK) open source library. If you're interested in developing web applications, analyzing multilingual news sources, or documenting endangered languages -- or if you're simply curious to have a programmer's perspective on how human language works -- you'll find Natural Language Processing with Python both fascinating and immensely useful., This book offers a highly accessible introduction to natural language processing, the field that supports a variety of language technologies, from predictive text and email filtering to automatic summarization and translation. With it, you'll learn how to write Python programs that work with large collections of unstructured text. You'll access ......, This book offers a highly accessible introduction to natural language processing, the field that supports a variety of language technologies, from predictive text and email filtering to automatic summarization and translation. With it, you'll learn how to write Python programs that work with large collections of unstructured text. You'll access richly annotated datasets using a comprehensive range of linguistic data structures, and you'll understand the main algorithms for analyzing the content and structure of written communication.Packed with examples and exercises, Natural Language Processing with Python will help you: Extract information from unstructured text, either to guess the topic or identify "named entities" Analyze linguistic structure in text, including parsing and semantic analysis Access popular linguistic databases, including WordNet and treebanks Integrate techniques drawn from fields as diverse as linguistics and artificial intelligence This book will help you gain practical skills in natural language processing using the Python programming language and the Natural Language Toolkit (NLTK) open source library. If you're interested in developing web applications, analyzing multilingual news sources, or documenting endangered languages -- or if you're simply curious to have a programmer's perspective on how human language works -- you'll find Natural Language Processing with Python both fascinating and immensely useful.
LC Classification Number
QA76.73.P98
賣家提供的物品說明
賣家信用評價
尚無信用評價