vote up 8 vote down star
14

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?

flag

66% accept rate
I doubt PersonA's definition of "similar" will match yours or anyone else's. – Gishu May 27 at 6:02
Why not post those two books you like in an answer to your question? – Anton Jul 14 at 14:51

11 Answers

vote up 8 vote down check

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%5Ftutorial.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 from my college days, but have nothing to do with the website.

link|flag
4  
Gentlemen, I fear we may be nerds. Seriously, this looks like a lot of fun. – James McMahon Jul 17 at 13:10
vote up 5 vote down

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

link|flag
1  
"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 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 at 15:35
@nemo: I think that Editorial Product Description is a lot more misleading than the subtitle. :) – Bill the Lizard Jul 15 at 15:38
vote up 4 vote down

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.

link|flag
Hey this looks pretty good. Thanks. – kunjaan Jul 15 at 14:56
vote up 3 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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!

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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