Showing posts with label algorithm. Show all posts
Reinforcement Learning

Reinforcement Learning

Reinforcement Learning (RL) is a type of Machine Learning other than "supervised learning" (having a teaching phase that shows the...
Read More
Recursion vs Iteration

Recursion vs Iteration

Recursion is a very commonly used technique to express mathematical relationship as well as implement computer algorithm. Define a function...
Read More
A* Search

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 ...
Read More
Search Engine and Ranking

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...
Read More