Articoli correlati a Programming Collective Intelligence: Building Smart...

Programming Collective Intelligence: Building Smart Web 2.0 Applications - Brossura

 
9780596529321: Programming Collective Intelligence: Building Smart Web 2.0 Applications
Vedi tutte le copie di questo ISBN:
 
 

Want to tap the power behind search rankings, product recommendations, social bookmarking, and online matchmaking? This fascinating book demonstrates how you can build Web 2.0 applications to mine the enormous amount of data created by people on the Internet. With the sophisticated algorithms in this book, you can write smart programs to access interesting datasets from other web sites, collect data from users of your own applications, and analyze and understand the data once you've found it.

Programming Collective Intelligence takes you into the world of machine learning and statistics, and explains how to draw conclusions about user experience, marketing, personal tastes, and human behavior in general -- all from information that you and others collect every day. Each algorithm is described clearly and concisely with code that can immediately be used on your web site, blog, Wiki, or specialized application. This book explains:

  • Collaborative filtering techniques that enable online retailers to recommend products or media
  • Methods of clustering to detect groups of similar items in a large dataset
  • Search engine features -- crawlers, indexers, query engines, and the PageRank algorithm
  • Optimization algorithms that search millions of possible solutions to a problem and choose the best one
  • Bayesian filtering, used in spam filters for classifying documents based on word types and other features
  • Using decision trees not only to make predictions, but to model the way decisions are made
  • Predicting numerical values rather than classifications to build price models
  • Support vector machines to match people in online dating sites
  • Non-negative matrix factorization to find the independent features in a dataset
  • Evolving intelligence for problem solving -- how a computer develops its skill by improving its own code the more it plays a game
Each chapter includes exercises for extending the algorithms to make them more powerful. Go beyond simple database-backed applications and put the wealth of Internet data to work for you.

"Bravo! I cannot think of a better way for a developer to first learn these algorithms and methods, nor can I think of a better way for me (an old AI dog) to reinvigorate my knowledge of the details."
-- Dan Russell, Google

"Toby's book does a great job of breaking down the complex subject matter of machine-learning algorithms into practical, easy-to-understand examples that can be directly applied to analysis of social interaction across the Web today. If I had this book two years ago, it would have saved precious time going down some fruitless paths."
-- Tim Wolters, CTO, Collective Intellect

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore:

Toby Segaran is the author of Programming Collective Intelligence, a very popular O'Reilly title. He was the founder of Incellico, a biotech software company later acquired by Genstruct. He currently holds the title of Data Magnate at Metaweb Technologies and is a frequent speaker at technology conferences.

Contenuti:
Praise for Programming Collective Intelligence; Preface; Prerequisites; Style of Examples; Why Python?; Open APIs; Overview of the Chapters; Conventions; Using Code Examples; How to Contact Us; Safari® Books Online; Acknowledgments; Chapter 1: Introduction to Collective Intelligence; 1.1 What Is Collective Intelligence?; 1.2 What Is Machine Learning?; 1.3 Limits of Machine Learning; 1.4 Real-Life Examples; 1.5 Other Uses for Learning Algorithms; Chapter 2: Making Recommendations; 2.1 Collaborative Filtering; 2.2 Collecting Preferences; 2.3 Finding Similar Users; 2.4 Recommending Items; 2.5 Matching Products; 2.6 Building a del.icio.us Link Recommender; 2.7 Item-Based Filtering; 2.8 Using the MovieLens Dataset; 2.9 User-Based or Item-Based Filtering?; 2.10 Exercises; Chapter 3: Discovering Groups; 3.1 Supervised versus Unsupervised Learning; 3.2 Word Vectors; 3.3 Hierarchical Clustering; 3.4 Drawing the Dendrogram; 3.5 Column Clustering; 3.6 K-Means Clustering; 3.7 Clusters of Preferences; 3.8 Viewing Data in Two Dimensions; 3.9 Other Things to Cluster; 3.10 Exercises; Chapter 4: Searching and Ranking; 4.1 What's in a Search Engine?; 4.2 A Simple Crawler; 4.3 Building the Index; 4.4 Querying; 4.5 Content-Based Ranking; 4.6 Using Inbound Links; 4.7 Learning from Clicks; 4.8 Exercises; Chapter 5: Optimization; 5.1 Group Travel; 5.2 Representing Solutions; 5.3 The Cost Function; 5.4 Random Searching; 5.5 Hill Climbing; 5.6 Simulated Annealing; 5.7 Genetic Algorithms; 5.8 Real Flight Searches; 5.9 Optimizing for Preferences; 5.10 Network Visualization; 5.11 Other Possibilities; 5.12 Exercises; Chapter 6: Document Filtering; 6.1 Filtering Spam; 6.2 Documents and Words; 6.3 Training the Classifier; 6.4 Calculating Probabilities; 6.5 A Naïve Classifier; 6.6 The Fisher Method; 6.7 Persisting the Trained Classifiers; 6.8 Filtering Blog Feeds; 6.9 Improving Feature Detection; 6.10 Using Akismet; 6.11 Alternative Methods; 6.12 Exercises; Chapter 7: Modeling with Decision Trees; 7.1 Predicting Signups; 7.2 Introducing Decision Trees; 7.3 Training the Tree; 7.4 Choosing the Best Split; 7.5 Recursive Tree Building; 7.6 Displaying the Tree; 7.7 Classifying New Observations; 7.8 Pruning the Tree; 7.9 Dealing with Missing Data; 7.10 Dealing with Numerical Outcomes; 7.11 Modeling Home Prices; 7.12 Modeling "Hotness"; 7.13 When to Use Decision Trees; 7.14 Exercises; Chapter 8: Building Price Models; 8.1 Building a Sample Dataset; 8.2 k-Nearest Neighbors; 8.3 Weighted Neighbors; 8.4 Cross-Validation; 8.5 Heterogeneous Variables; 8.6 Optimizing the Scale; 8.7 Uneven Distributions; 8.8 Using Real Data—the eBay API; 8.9 When to Use k-Nearest Neighbors; 8.10 Exercises; Chapter 9: Advanced Classification: Kernel Methods and SVMs; 9.1 Matchmaker Dataset; 9.2 Difficulties with the Data; 9.3 Basic Linear Classification; 9.4 Categorical Features; 9.5 Scaling the Data; 9.6 Understanding Kernel Methods; 9.7 Support-Vector Machines; 9.8 Using LIBSVM; 9.9 Matching on Facebook; 9.10 Exercises; Chapter 10: Finding Independent Features; 10.1 A Corpus of News; 10.2 Previous Approaches; 10.3 Non-Negative Matrix Factorization; 10.4 Displaying the Results; 10.5 Using Stock Market Data; 10.6 Exercises; Chapter 11: EVOLVING INTELLIGENCE; 11.1 What Is Genetic Programming?; 11.2 Programs As Trees; 11.3 Creating the Initial Population; 11.4 Testing a Solution; 11.5 Mutating Programs; 11.6 Crossover; 11.7 Building the Environment; 11.8 A Simple Game; 11.9 Further Possibilities; 11.10 Exercises; Chapter 12: Algorithm Summary; 12.1 Bayesian Classifier; 12.2 Decision Tree Classifier; 12.3 Neural Networks; 12.4 Support-Vector Machines; 12.5 k-Nearest Neighbors; 12.6 Clustering; 12.7 Multidimensional Scaling; 12.8 Non-Negative Matrix Factorization; 12.9 Optimization; Third-Party Libraries; Universal Feed Parser; Python Imaging Library; Beautiful Soup; pysqlite; NumPy; matplotlib; pydelicious; Mathematical Formulas; Euclidean Distance; Pearson Correlation Coefficient; Weighted Mean; Tanimoto Coefficient; Conditional Probability; Gini Impurity; Entropy; Variance; Gaussian Function; Dot-Products; Colophon;

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreOreilly & Associates Inc
  • Data di pubblicazione2007
  • ISBN 10 0596529325
  • ISBN 13 9780596529321
  • RilegaturaCopertina flessibile
  • Numero di pagine334
  • Valutazione libreria

Altre edizioni note dello stesso titolo

9788184043709: Programming Collective Intelligence

Edizione in evidenza

ISBN 10:  8184043708 ISBN 13:  9788184043709
Casa editrice: Shroff - O'Reilly
Brossura

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Paperback Quantità: 1
Da:
GoldBooks
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New Copy. Customer Service Guaranteed. Codice articolo think0596529325

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 15,71
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,99
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Paperback Quantità: 1
Da:
upickbook
(Daly City, CA, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: New. Codice articolo mon0000245705

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 20,02
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 4,21
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Paperback Quantità: 1
Da:
GoldenWavesOfBooks
(Fayetteville, TX, U.S.A.)
Valutazione libreria

Descrizione libro Paperback. Condizione: new. New. Fast Shipping and good customer service. Codice articolo Holz_New_0596529325

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 20,90
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,75
In U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

Segaran, Toby
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Paperback or Softback Quantità: 5
Da:
BargainBookStores
(Grand Rapids, MI, U.S.A.)
Valutazione libreria

Descrizione libro Paperback or Softback. Condizione: New. Programming Collective Intelligence: Building Smart Web 2.0 Applications 1.3. Book. Codice articolo BBS-9780596529321

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 31,90
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Brossura Quantità: 1
Da:
Front Cover Books
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: new. Codice articolo FrontCover0596529325

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 28,10
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 4,04
In U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Soft Cover Quantità: 10
Da:
booksXpress
(Bayonne, NJ, U.S.A.)
Valutazione libreria

Descrizione libro Soft Cover. Condizione: new. Codice articolo 9780596529321

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 33,56
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Brossura Quantità: > 20
Da:
Lakeside Books
(Benton Harbor, MI, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New! Not Overstocks or Low Quality Book Club Editions! Direct From the Publisher! We're not a giant, faceless warehouse organization! We're a small town bookstore that loves books and loves it's customers! Buy from Lakeside Books!. Codice articolo OTF-S-9780596529321

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 32,10
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,75
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Brossura Quantità: > 20
Da:
Lucky's Textbooks
(Dallas, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Codice articolo ABLIING23Feb2416190071085

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 36,09
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,75
In U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Brossura Quantità: 1
Da:
GreatBookPrices
(Columbia, MD, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Codice articolo 5145091-n

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 38,91
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 2,48
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Segaran, Toby
Editore: O'Reilly Media (2007)
ISBN 10: 0596529325 ISBN 13: 9780596529321
Nuovo Brossura Quantità: > 20
Da:
California Books
(Miami, FL, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Codice articolo I-9780596529321

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 41,57
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Vedi altre copie di questo libro

Vedi tutti i risultati per questo libro