Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Programming Collective Intelligence is an awesome way to get your feet wet in Machine learning. I am looking for similar books which has small but interesting programming projects. Do you have any recommendations?

Edit: It need not be related to machine learning. It could be any programming project-based books. Thanks.

Edit2: Collective Intelligence in Action is one more book that looks at some interesting CS stuffs. Do you guys have any similar recommendations?

share|improve this question
I doubt PersonA's definition of "similar" will match yours or anyone else's. – Gishu May 27 '09 at 6:02
Why not post those two books you like in an answer to your question? – Anton Jul 14 '09 at 14:51
5  
"Closed as Not Constructive". This is good example of how such actions are detrimental to the value of StackOverflow. I'm still getting points on my answer, 6 months after this is closed, so it clear the members think this question is useful. One can always find a small group of dissenters that don't like something, and I think that has happened in this case. If it were instead moved to Programmers as being a general discussion, I would not be objecting. – Ira Baxter Mar 31 '12 at 18:40

closed as not constructive by Jeremy Banks, templatetypedef, Kev Sep 17 '11 at 22:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

16 Answers

Not a book, but a technical paper and an enormously fun learning experience if you want to know more about compilers (and metacompilers)... this website walks you through building a completely self-contained compiler system that can compile itself and other languages:

http://www.bayfronttechnologies.com/mc_tutorial.html

This is all based on an amazing little 10-page technical paper by Val Schorre:

META II: A Syntax-Oriented Compiler Writing Language

from honest-to-god 1964. I learned how to build compilers from this back in 1970. There's a mind-blowing moment when you finally grok how the compiler can regenerate itself.... If you are interested in compilers, run, don't walk to read this gem of a paper. It can be found at the website.

I know the website author, Dr. James Neighbors, from my college days, but have nothing to do with the website. FWIW, Neighbors is the source of the software engineering term "domain analysis", a key concept in software engineering, and this MetaII paper plays a significant role in his Ph.D. thesis demonstrating the domain analysis ideas. He uses it to define an astonishing variety of interacting domain specific languages.

share|improve this answer
8  
Gentlemen, I fear we may be nerds. Seriously, this looks like a lot of fun. – James McMahon Jul 17 '09 at 13:10
Simply awesome. – Alexandre C. Jan 3 '11 at 17:21
1  
This on I have to try :) – Kimtho6 Jan 4 '11 at 13:39
Wow. After two years of positive votes, somebody hit-and-run dings this with a "flag". People are weird. Must really hate compilers :-} – Ira Baxter Aug 23 '11 at 3:43

Programming Game AI by Example by Mat Buckland has a lot of little cool AI related projects in it.

alt text

Programming Game AI by Example provides a comprehensive and practical introduction to the bread and butter AI techniques used by the game development industry, leading the reader through the process of designing, programming, and implementing intelligent agents for action games using the C++ programming language. Techniques covered include state- and goal-based behavior, inter-agent communication, individual and group steering behaviors, team AI, graph theory, search, path planning and optimization, triggers, scripting, scripted finite state machines, perceptual modeling, goal evaluation, goal arbitration, and fuzzy logic.

Might be up your alley. Take a look at the Table of Contents.

share|improve this answer
Hey this looks pretty good. Thanks. – kunj2aan Jul 15 '09 at 14:56

Java After Hours: 10 Projects You'll Never Do at Work has some fun projects.

share|improve this answer
2  
"Never do at work" may be misleading. "Send e-mail from Java programs", "Use multithreading, Ant", "Send images to Web browsers"? All stuff I've done at work. – James McMahon Jul 15 '09 at 15:34
1  
The table of contents is at my.safaribooksonline.com/0672327473?tocview=true, that makes it look more interesting. – James McMahon Jul 15 '09 at 15:35
@nemo: I think that Editorial Product Description is a lot more misleading than the subtitle. :) – Bill the Lizard Jul 15 '09 at 15:38

While Project Euler is not a book per se, it does contain a large number of "small but interesting programming projects". It's a great way to expand your math skills as well as try out new languages. (Code Kata seems similar but more CS-oriented; I've not yet dived into it.)

I also have fond memories of Parallel and Distributed Simulation Systems; the book itself may be a bit dry, but it's very example-driven, and applies to everything from cellphone tower switching to airport scheduling to weather simulation to video games. It's uncannily fun to write rollback-capable code, too.

share|improve this answer

Amazon says: Customers buy this book with Visualizing Data by Ben Fry...

share|improve this answer

If you want to go one step ahead, you might want to try this one: http://www.cs.toronto.edu/~mackay/itila/book.html. You can also order it as hard copy, but maybe the online version does the job.

It's actually a fun read, the math is hard (of course, it's machine learning) but it's an excellent start into a great topic!

share|improve this answer

Making Things Talk: Practical Methods for Connecting Physical Objects by Tom Igoe

It is a great way to expand your programming knowledge in how to communicate with hardware. The book has lots of fun and interesting projects with good code examples. It's a great starting point for future projects that you may want to do on your own.

share|improve this answer

You could take a look at Growing Artificial Societies, and build it as you go.

share|improve this answer

I think they're out of print now, but A.K. Dewdney's books are excellent for this kind of thing:

  • The Armchair Universe: An Exploration of Computer Worlds (1988). ISBN 0-7167-1939-8. (collection of "Mathematical Recreations" columns)
  • The Magic Machine: A Handbook of Computer Sorcery (1990). ISBN 0-7167-2144-9. (collection of "Mathematical Recreations" columns)
  • The Tinkertoy Computer and Other Machinations (1993). ISBN 0-7167-2491-X. (collection of "Mathematical Recreations" columns)

Dewdney used to write a column for Scientific American and these three books are collections of those columns. In a certain sense, the columns are dated because they often give BASIC code, but they're also timeless in that they cover many interesting mathematical and graphics hacks and algorithms.

share|improve this answer

Best of Ruby Quiz is a book of a bunch of small interesting projects such as create a self learning Tic Tac Toe AI. The projects can definitely be done in any language, so don't let the fact that it says Ruby in the title deter you from it.

share|improve this answer

Take a look at the Machine Learning book by Christopher Bishop. Has some good exaplanations on concepts. Should be a good point at knowing true foundations on ML. Lots of applications and open problems mentioned as well.

share|improve this answer

I would check out Programming Pearls by John Bentley. It has lots of smaller problems to get your programming brain going.

share|improve this answer

There are several relevant answers at this SO question:

  • Peter Norvig, Paradigms of AI Programming
  • Mark Jason Dominus, Higher-Order Perl
  • Abelson and diSessa, Turtle Geometry
  • Kernighan and Plauger, Software Tools in Pascal
  • Paul Graham, On Lisp
  • Peter Seibel, Practical Common Lisp

Links and descriptions over there. Also, Etudes for Programmers was the original CS project book, still worth sampling even at over 30 years old. (It isn't listed at the other question because it presents no source code of its own for the projects, except one.)

share|improve this answer

I've read The Emergence of Artificial Cognition by Peter Bock, and it's really a good read. Not as much of a text book as it is a supplement to the research surrounding machine learning. I've had two classes based on his theories and actually was able to design and run projects that learn based only on this book and some in-depth statistics.

There are side stories to make the concepts relevant, and he even has a philosophy buddy of his contemplate the ethical underpinnings of a "living" computer as an epilogue. Peter was, and continues to be, a very knowledgeable and passionate man when it comes to machine learning, so it's no surprise that this book is just as entertaining as it is enlightening.

share|improve this answer

One interesting book around that area is "An introduction to genetic algorithms" http://www.google.com/books?id=0eznlz0TF-IC&printsec=frontcover&hl=da#v=onepage&q&f=false

Combined with imagination it is pretty cool what you can do with evolutionary computing...

share|improve this answer

Specifically if you are interested in the collective intelligence book check the following books out. They cover topics such as recommender systems, search (information retrieval) and a variety of machine learning techniques that you can use in these scenarios.

These books are quite practical and well suited to a CS student. They will bring you through either the SDK or algorithms during which you will do a few little implementations.

Collective Intelligence in Action - http://www.manning.com/alag/

Taming text - http://www.manning.com/ingersoll/

Mahout in action - http://www.manning.com/owen/

Data mining - http://www.cs.waikato.ac.nz/~ml/weka/book.html (This is from the guys who wrote an api / program for ML called weka)

Lucene In Action - http://www.manning.com/hatcher2/

Solr enterprise search - https://www.packtpub.com/solr-1-4-enterprise-search-server/book

If you'd like a more theory based book for cs students I'd recommend Networks, Crowds and Markets you can find the ebook at http://www.cs.cornell.edu/home/kleinber/networks-book/

It focuses on social network analysis, graph theory and game theory.

These are some conferences that cover the state of the art in the field. The WWW conference is more likely to have research from companies such as facebook, microsoft etc. where it their work is more focussed on using some of their preexisting products.

ACM Recommender Systems - http://recsys.acm.org

ACM User Modeling, Adaptation and Personalization - http://www.umap2011.org/

ACM WWW - http://wwwconference.org/

Some libraries I use that are worth checking out are Mahout - http://mahout.apache.org/

Weka - http://www.cs.waikato.ac.nz/ml/weka/

share|improve this answer
Thanks a lot!!! – kunj2aan Aug 23 '11 at 2:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.