Cargando…

Python 3 text processing with NLTK 3 cookbook : over 80 practical recipes on natural language processing techniques using Python's NLTK 3.0 /

This book is intended for Python programmers interested in learning how to do natural language processing. Maybe you've learned the limits of regular expressions the hard way, or you've realized that human language cannot be deterministically parsed like a computer language. Perhaps you ha...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Perkins, Jacob (Autor)
Otros Autores: Fattohi, Faiz (Diseñador de portada)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, England : Packt Publishing Ltd, 2014.
Edición:Second edition.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBSCO_ocn891381366
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 140902t20142014enka o 001 0 eng d
040 |a E7B  |b eng  |e rda  |e pn  |c E7B  |d OCLCO  |d COO  |d EBLCP  |d HEBIS  |d IDEBK  |d DEBSZ  |d YDXCP  |d CHVBK  |d N$T  |d OCLCQ  |d AZK  |d AGLDB  |d OCLCQ  |d ICA  |d MERUC  |d OCLCQ  |d REB  |d D6H  |d OCLCF  |d VTS  |d OCLCQ  |d WYU  |d ZCU  |d M8D  |d VT2  |d OCLCQ  |d K6U  |d OCLCQ  |d OCLCO  |d QGK  |d OCLCQ  |d OCLCO 
019 |a 889674234  |a 907279783  |a 961486506  |a 1259247125 
020 |a 9781782167860  |q (e-book) 
020 |a 1782167862  |q (e-book) 
020 |a 1782167854 
020 |a 9781782167853 
020 |z 9781782167853 
029 1 |a AU@  |b 000056015995 
029 1 |a CHBIS  |b 010480453 
029 1 |a CHNEW  |b 000689901 
029 1 |a CHNEW  |b 000689903 
029 1 |a CHNEW  |b 000887850 
029 1 |a CHVBK  |b 336922434 
029 1 |a CHVBK  |b 374467676 
029 1 |a DEBSZ  |b 41407596X 
029 1 |a DEBSZ  |b 484728660 
035 |a (OCoLC)891381366  |z (OCoLC)889674234  |z (OCoLC)907279783  |z (OCoLC)961486506  |z (OCoLC)1259247125 
050 4 |a QA76.73.P98  |b .P47 2014eb 
072 7 |a COM  |x 051360  |2 bisacsh 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Perkins, Jacob,  |e author. 
245 1 0 |a Python 3 text processing with NLTK 3 cookbook :  |b over 80 practical recipes on natural language processing techniques using Python's NLTK 3.0 /  |c Jacob Perkins ; cover image by Faiz Fattohi. 
250 |a Second edition. 
264 1 |a Birmingham, England :  |b Packt Publishing Ltd,  |c 2014. 
264 4 |c ©2014 
300 |a 1 online resource (304 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
500 |a "Quick answers to common problems"--Cover 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (ebrary, viewed September 2, 2014). 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Tokenizing Text and WordNet Basics; Introduction; Tokenizing text into sentences; Tokenizing sentences into words; Tokenizing sentences using regular expressions; Training a sentence tokenizer; Filtering stopwords in a tokenized sentence; Looking up Synsets for a word in WordNet; Looking up lemmas and synonyms in WordNet; Calculating WordNet Synset similarity; Discovering word collocations; Chapter 2: Replacing and Correcting Words; Introduction; Stemming words. 
505 8 |a Lemmatizing words with WordNetReplacing words matching regular expressions; Removing repeating characters; Spelling correction with Enchant; Replacing synonyms; Replacing negations with antonyms; Chapter 3: Creating Custom Corpora; Introduction; Setting up a custom corpus; Creating a wordlist corpus; Creating a part-of-speech tagged word corpus; Creating a chunked phrase corpus; Creating a categorized text corpus; Creating a categorized chunk corpus reader; Lazy corpus loading; Creating a custom corpus view; Creating a MongoDB-backed corpus reader; Corpus editing with file locking. 
505 8 |a Chapter 4: Part-of-speech TaggingIntroduction; Default tagging; Training a unigram part-of-speech tagger; Combining taggers with backoff tagging; Training and combining ngram taggers; Creating a model of likely word tags; Tagging with regular expressions; Affix tagging; Training a Brill tagger; Training the TnT tagger; Using WordNet for tagging; Tagging proper names; Classifier-based tagging; Training a tagger with NLTK-Trainer; Chapter 5: Extracting Chunks; Introduction; Chunking and chinking with regular expressions; Merging and splitting chunks with regular expressions. 
505 8 |a Expanding and removing chunks with regular expressionsPartial parsing with regular expressions; Training a tagger-based chunker; Classification-based chunking; Extracting named entities; Extracting proper noun chunks; Extracting location chunks; Training a named entity chunker; Training a chunker with NLTK-Trainer; Chapter 6: Transforming Chunks and Trees; Introduction; Filtering insignificant words from a sentence; Correcting verb forms; Swapping verb phrases; Swapping noun cardinals; Swapping infinitive phrases; Singularizing plural nouns; Chaining chunk transformations. 
505 8 |a Converting a chunk tree to textFlattening a deep tree; Creating a shallow tree; Converting tree labels; Chapter 7: Text Classification; Introduction; Bag of words feature extraction; Training a Naive Bayes classifier; Training a decision tree classifier; Training a maximum entropy classifier; Training scikit-learn classifiers; Measuring precision and recall of a classifier; Calculating high information words; Combining classifiers with voting; Classifying with multiple binary classifiers; Training a classifier with NLTK-Trainer; Chapter 8: Distributed Processing and Handling Large Datasets. 
520 |a This book is intended for Python programmers interested in learning how to do natural language processing. Maybe you've learned the limits of regular expressions the hard way, or you've realized that human language cannot be deterministically parsed like a computer language. Perhaps you have more text than you know what to do with, and need automated ways to analyze and structure that text. This Cookbook will show you how to train and use statistical language models to process text in ways that are practically impossible with standard programming tools. A basic knowledge of Python and the basi. 
546 |a English. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Python (Computer program language) 
650 0 |a Natural language processing (Computer science)  |x Research. 
650 6 |a Python (Langage de programmation) 
650 6 |a Traitement automatique des langues naturelles  |x Recherche. 
650 7 |a COMPUTERS  |x Programming Languages  |x Python.  |2 bisacsh 
650 7 |a Python (Computer program language)  |2 fast 
700 1 |a Fattohi, Faiz,  |e cover designer. 
776 0 8 |i Print version:  |a Perkins, Jacob.  |t Python 3 text processing with NLTK 3 cookbook : over 80 practical recipes on natural language processing techniques using Python's NLTK 3.0.  |b Second edition.  |d Birmingham, England : Packt Publishing Ltd, ©2014  |h iii, 288 pages  |z 9781782167853 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=836632  |z Texto completo 
936 |a BATCHLOAD 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL1706433 
938 |a ebrary  |b EBRY  |n ebr10921234 
938 |a EBSCOhost  |b EBSC  |n 836632 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis29662597 
938 |a YBP Library Services  |b YANK  |n 12055178 
994 |a 92  |b IZTAP