Pragmatic Programming Techniques
Pages
(Move to ...)
Home
▼
Friday, February 29, 2008
Scalable System Design
›
Building scalable system is becoming a hotter and hotter topic. Mainly because more and more people are using computer these days, both the...
5 comments:
Sunday, February 3, 2008
Classification via Decision Tree
›
Decision Tree is another model-based learning approach where the output is a tree. Here, we are given a set of data with structure [x1, x2 ...
Thursday, January 31, 2008
Solving algorithmic problem
›
There are some general techniques that I've found quite useful to come up with a solution for an algorithmic problem. Understand the pro...
Friday, January 25, 2008
Recursion vs Iteration
›
Recursion is a very commonly used technique to express mathematical relationship as well as implement computer algorithm. Define a function...
1 comment:
Thursday, January 24, 2008
A* Search
›
Given a start state S and a Goal state G, find an optimal path S -> A -> B -> ... -> G We can assign a cost to each arc so the ...
Sunday, December 9, 2007
Search Engine and Ranking
›
Crawling Start from an HTML, save the file, crawl its links def collect_doc(doc) -- save doc -- for each link in doc ---- collect_doc(link.h...
Collaborative Filtering
›
Given a set of user's rating on movies, how to recommend movies to a new user ? Ideas from the book: Collective Intelligence chapter on...
1 comment:
‹
›
Home
View web version