AI Fall 2007
- Course webpage
- Assignments for 1st period
- Ruby core reference,
Ruby programming, and
Documentation from Ruby site
- Lisp programming links
- Example demos of course topics
- Blind search algorithms, no heuristics, breadth-first, depth-first, depth-limited, iterative deepening
- AStar demonstration, heuristic search, f = h + g, where h is the estimated cost to reach the goal, g is the actual cost so far in the search, f is the sum of these two.
- Minimax links
- genetic algorithms
also
GA's explained
- More AI topics from our text
- (these topics are covered) Chap 3-6 Searching, exploration, constraint satisfaction, adversarial search, genetic algorithms in the 8-queen problem, minimax trees, alpha-beta pruning
- Chap 7-10 Knowledge and knowledge representation
- Chap 13,14 - Uncertain knowledge, probabilistic reasoning
- Chap 18 - Learning, decision trees
- Chap 20, 21 - Statiscal learning methods, reinforcement learning
- Chap 24 - perception, machine vision
- Lisp to Ruby (.doc)
- Example Lisp/Ruby:
power.lsp and
power.rb
- AI Unit 1 (.doc)
- The old course...AI 2000/2003
with Eliza.