Python Text Processing with NLTK 2.0 Cookbook und über 1 Million weitere Bücher verfügbar für Amazon Kindle . Erfahren Sie mehr


oder
Loggen Sie sich ein, um 1-Click® einzuschalten.
oder
Mit kostenloser Probeteilnahme bei Amazon Prime. Melden Sie sich während des Bestellvorgangs an. Erfahren Sie mehr
Alle Angebote
Möchten Sie verkaufen? Hier verkaufen
Python Text Processing with Nltk 2.0 Cookbook
 
 
Beginnen Sie mit dem Lesen von Python Text Processing with NLTK 2.0 Cookbook auf Ihrem Kindle in weniger als einer Minute.

Sie haben keinen Kindle? Hier kaufen oder eine gratis Kindle Lese-App herunterladen.

Python Text Processing with Nltk 2.0 Cookbook [Englisch] [Taschenbuch]

Jacob Perkins

Unverb. Preisempf.: EUR 33,16
Preis: EUR 31,40 kostenlose Lieferung. Siehe Details.
Sie sparen: EUR 1,76 (5%)
  Alle Preisangaben inkl. MwSt.
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Auf Lager.
Verkauf und Versand durch Amazon.de. Geschenkverpackung verfügbar.
Lieferung bis Donnerstag, 31. Mai: Wählen Sie an der Kasse Morning-Express. Siehe Details.

Weitere Ausgaben

Amazon-Preis Neu ab Gebraucht ab
Kindle Edition EUR 13,69  
Taschenbuch EUR 31,40  

Wird oft zusammen gekauft

Kunden kaufen diesen Artikel zusammen mit Natural Language Processing with Python EUR 27,95

Python Text Processing with Nltk 2.0 Cookbook + Natural Language Processing with Python
Preis für beide: EUR 59,35

Verfügbarkeit und Versanddetails anzeigen

  • Dieser Artikel: Python Text Processing with Nltk 2.0 Cookbook

    Auf Lager.
    Verkauf und Versand durch Amazon.de.
    Kostenlose Lieferung. Details

  • Natural Language Processing with Python

    Auf Lager.
    Verkauf und Versand durch Amazon.de.
    Kostenlose Lieferung. Details


Kunden, die diesen Artikel gekauft haben, kauften auch


Produktinformation


Mehr über den Autor

Jacob Perkins
Entdecken Sie Bücher, lesen Sie über Autoren und mehr

Besuchen Sie die Seite von Jacob Perkins auf Amazon

Produktbeschreibungen

Kurzbeschreibung

Use Python's NLTK suite of libraries to maximize your Natural Language Processing capabilities. * Quickly get to grips with Natural Language Processing ? with Text Analysis, Text Mining, and beyond * Learn how machines and crawlers interpret and process natural languages * Easily work with huge amounts of data and learn how to handle distributed processing * Part of Packt's Cookbook series: Each recipe is a carefully organized sequence of instructions to complete the task as efficiently as possible In Detail Natural Language Processing is used everywhere ? in search engines, spell checkers, mobile phones, computer games ? even your washing machine. Python's Natural Language Toolkit (NLTK) suite of libraries has rapidly emerged as one of the most efficient tools for Natural Language Processing. You want to employ nothing less than the best techniques in Natural Language Processing ? and this book is your answer. Python Text Processing with NLTK 2.0 Cookbook is your handy and illustrative guide, which will walk you through all the Natural Language Processing techniques in a step?by-step manner. It will demystify the advanced features of text analysis and text mining using the comprehensive NLTK suite. This book cuts short the preamble and you dive right into the science of text processing with a practical hands-on approach. Get started off with learning tokenization of text. Get an overview of WordNet and how to use it. Learn the basics as well as advanced features of Stemming and Lemmatization. Discover various ways to replace words with simpler and more common (read: more searched) variants. Create your own corpora and learn to create custom corpus readers for JSON files as well as for data stored in MongoDB. Use and manipulate POS taggers. Transform and normalize parsed chunks to produce a canonical form without changing their meaning. Dig into feature extraction and text classification. Learn how to easily handle huge amounts of data without any loss in efficiency or speed. This book will teach you all that and beyond, in a hands-on learn-by-doing manner. Make yourself an expert in using the NLTK for Natural Language Processing with this handy companion. What you will learn from this book * Learn Text categorization and Topic identification * Learn Stemming and Lemmatization and how to go beyond the usual spell checker * Replace negations with antonyms in your text * Learn to tokenize words into lists of sentences and words, and gain an insight into WordNet * Transform and manipulate chunks and trees * Learn advanced features of corpus readers and create your own custom corpora * Tag different parts of speech by creating, training, and using a part-of-speech tagger * Improve accuracy by combining multiple part-of-speech taggers * Learn how to do partial parsing to extract small chunks of text from a part-of-speech tagged sentence * Produce an alternative canonical form without changing the meaning by normalizing parsed chunks * Learn how search engines use Natural Language Processing to process text * Make your site more discoverable by learning how to automatically replace words with more searched equivalents * Parse dates, times, and HTML * Train and manipulate different types of classifiers Approach The learn-by-doing approach of this book will enable you to dive right into the heart of text processing from the very first page. Each recipe is carefully designed to fulfill your appetite for Natural Language Processing. Packed with numerous illustrative examples and code samples, it will make the task of using the NLTK for Natural Language Processing easy and straightforward. Who this book is written for This book is for Python programmers who want to quickly get to grips with using the NLTK for Natural Language Processing. Familiarity with basic text processing concepts is required. Programmers experienced in the NLTK will also find it useful. Students of linguistics will find it invaluable.

Welche anderen Artikel kaufen Kunden, nachdem sie diesen Artikel angesehen haben?


In diesem Buch (Mehr dazu)
Ausgewählte Seiten ansehen
Buchdeckel | Copyright | Inhaltsverzeichnis | Auszug | Stichwortverzeichnis | Rückseite
Hier reinlesen und suchen:

Tags

 (Was ist das?)
Bei einem Tag handelt es sich um ein Schlagwort, das zum Produkt passt.
Tags erleichtern allen Kunden die Suche und die Sortierung ihrer Lieblingsprodukte.
 

Kundenrezensionen

Es gibt noch keine Kundenrezensionen auf Amazon.de
5 Sterne
4 Sterne
3 Sterne
2 Sterne
1 Sterne
Die hilfreichsten Kundenrezensionen auf Amazon.com (beta)
Amazon.com:  3 Rezensionen
2 von 2 Kunden fanden die folgende Rezension hilfreich
Easier to implement than "Natural Language Processing with Python" 15. März 2012
Von hellopenguin - Veröffentlicht auf Amazon.com
Format:Taschenbuch
I've been coding in perl for more than 10 years, and recently picked up python to do natural language processing. So I am new to both python and NLTK. I started off with the popular "Natural Language Processing with Python" by Bird, Klein, and Loper. I found it hard to follow because the dots were not connected. In that book, I'd read an example, and I *thought* I understood it, but coding it was a different story because there was no transition between the different sections. So I had to go to github to find random sample code using the tools I was interested in.

Then I picked up NLTK 2.0 Cookbook. It doesn't spend much time explaining concepts, but I find I can type the code in pretty much word-for-word (and replace it with my customized needs), and the code works. I find it much more useful, and faster to code using this book as a template. It's limited in the recipes it gives, but provides the main NLTK recipes, so I'm quite happy with it.

Since I had already picked up the Bird book, I knew exactly which recipes I needed. If you don't know which chapters are pertinent to your needs, I could see it being difficult to know which recipes to use because there's not much explanation and the terminology is different if you're new to natural language processing. The terminology and concepts are better explained in the Bird book.

A good book. Worth checking out some sample pages on Amazon to see if the recipes will be useful to you, and if you're finding difficulty implementing what's in the Bird book, this one provides better instructions.
And what do I do know? 29. Mai 2012
Von J. Schmuecker - Veröffentlicht auf Amazon.com
Format:Kindle Edition|Von Amazon bestätigter Kauf
The book is more a description of the API than a book introducing one to text processing and what you can actually do with it. So if you need a reference book with some samples this might be the right buy. If you want to learn and understand what you can do with NLTK and how to apply the functionality, forget this book.
Very practical book 6. Dezember 2011
Von Junling Hu - Veröffentlicht auf Amazon.com
Format:Taschenbuch
I found this book to be clear and very well written. All the examples are easy to follow, and the code are ready to use. It is a very practical book. I really want to thank the authors to put all the information together. It's an invaluable service.

Kunden diskutieren

Das Forum zu diesem Produkt
Diskussion Antworten Jüngster Beitrag
Noch keine Diskussionen

Fragen stellen, Meinungen austauschen, Einblicke gewinnen
Neue Diskussion starten
Thema:
Erster Beitrag:
Eingabe des Log-ins
 


Aktive Diskussionen in ähnlichen Foren
Kundendiskussionen durchsuchen
Alle Amazon-Diskussionen durchsuchen
   
Ähnliche Foren


Lieblingslisten


Ähnliche Artikel finden


Anhand des Sachgebietes nach ähnlichen Produkten suchen:


Ihr Kommentar


Datenschutzerklärung von Amazon.de Versandbedingungen von Amazon.de Umtausch- & Rücknahme bei Amazon.de