N-Queens problem. Administrative. Local Search

Similar documents
Administrative. Local Search!

Artificial Intelligence

Artificial Intelligence

Comments about assign 1. Quick search recap. Constraint Satisfaction Problems (CSPs) Search uninformed BFS, DFS, IDS. Adversarial search

Admin. Quick search recap. Constraint Satisfaction Problems (CSPs)! Intro Example: 8-Queens. Where should I put the queens in columns 3 and 4?

Set 5: Constraint Satisfaction Problems

Local Search (Ch )

Local Search and Optimization Chapter 4. Mausam (Based on slides of Padhraic Smyth, Stuart Russell, Rao Kambhampati, Raj Rao, Dan Weld )

Local Search and Optimization Chapter 4. Mausam (Based on slides of Padhraic Smyth, Stuart Russell, Rao Kambhampati, Raj Rao, Dan Weld )

Module 4. Constraint satisfaction problems. Version 2 CSE IIT, Kharagpur

Set 5: Constraint Satisfaction Problems Chapter 6 R&N

Local Search and Optimization Chapter 4. Mausam (Based on slides of Padhraic Smyth, Stuart Russell, Rao Kambhampati, Raj Rao, Dan Weld )

Lecture 9. Heuristic search, continued. CS-424 Gregory Dudek

CS 331: Artificial Intelligence Local Search 1. Tough real-world problems

Local Search for CSPs

EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS

CS:4420 Artificial Intelligence

CMU-Q Lecture 8: Optimization I: Optimization for CSP Local Search. Teacher: Gianni A. Di Caro

Advanced A* Improvements

Gradient Descent. 1) S! initial state 2) Repeat: Similar to: - hill climbing with h - gradient descent over continuous space

Announcements. CS 188: Artificial Intelligence Fall Reminder: CSPs. Today. Example: 3-SAT. Example: Boolean Satisfiability.

CS 188: Artificial Intelligence Fall 2008

Today. CS 188: Artificial Intelligence Fall Example: Boolean Satisfiability. Reminder: CSPs. Example: 3-SAT. CSPs: Queries.

Example: Map coloring

Local Search. CS 486/686: Introduction to Artificial Intelligence Winter 2016

Midterm Examination CS540-2: Introduction to Artificial Intelligence

Uninformed Search Methods. Informed Search Methods. Midterm Exam 3/13/18. Thursday, March 15, 7:30 9:30 p.m. room 125 Ag Hall

3.6.2 Generating admissible heuristics from relaxed problems

Introduction to Artificial Intelligence 2 nd semester 2016/2017. Chapter 4: Beyond Classical Search

Hill Climbing. Assume a heuristic value for each assignment of values to all variables. Maintain an assignment of a value to each variable.

DIT411/TIN175, Artificial Intelligence. Peter Ljunglöf. 23 January, 2018

CS 188: Artificial Intelligence Spring Today

Informed search algorithms. Chapter 4

Artificial Intelligence

Informed search algorithms. (Based on slides by Oren Etzioni, Stuart Russell)

Set 5: Constraint Satisfaction Problems

CSE 473: Artificial Intelligence

University of Waterloo Department of Electrical and Computer Engineering ECE 457A: Cooperative and Adaptive Algorithms Midterm Examination

Beyond Classical Search: Local Search. CMPSCI 383 September 23, 2011

Local Search (Greedy Descent): Maintain an assignment of a value to each variable. Repeat:

Solving Problems: Intelligent Search

Space of Search Strategies. CSE 573: Artificial Intelligence. Constraint Satisfaction. Recap: Search Problem. Example: Map-Coloring 11/30/2012

2006/2007 Intelligent Systems 1. Intelligent Systems. Prof. dr. Paul De Bra Technische Universiteit Eindhoven

Local Search. CS 486/686: Introduction to Artificial Intelligence

Set 5: Constraint Satisfaction Problems

What is Search For? CSE 473: Artificial Intelligence. Example: N-Queens. Example: N-Queens. Example: Map-Coloring 4/7/17

Informed search algorithms. Chapter 4

Informed Search. CMU Snake Robot. Administrative. Uninformed search strategies. Assignment 1 was due before class how d it go?

Introduction to Computer Science and Programming for Astronomers

Informed Search CS457 David Kauchak Fall 2011

CS 380: Artificial Intelligence Lecture #4

ARTIFICIAL INTELLIGENCE. Informed search

TDDC17. Intuitions behind heuristic search. Recall Uniform-Cost Search. Best-First Search. f(n) =... + h(n) g(n) = cost of path from root node to n

Artificial Intelligence

CS 4700: Artificial Intelligence

Outline. Best-first search. Greedy best-first search A* search Heuristics Local search algorithms

Outline. Best-first search

Outline. Best-first search

TDDC17. Intuitions behind heuristic search. Best-First Search. Recall Uniform-Cost Search. f(n) =... + h(n) g(n) = cost of path from root node to n

mywbut.com Informed Search Strategies-II

SRI VIDYA COLLEGE OF ENGINEERING & TECHNOLOGY REPRESENTATION OF KNOWLEDGE PART A

Stochastic greedy local search Chapter 7

Constraint Satisfaction Problems

Lecture Plan. Best-first search Greedy search A* search Designing heuristics. Hill-climbing. 1 Informed search strategies. Informed strategies

Artificial Intelligence

Algorithms & Complexity

CS 188: Artificial Intelligence

CS 188: Artificial Intelligence Fall 2008

Announcements. CS 188: Artificial Intelligence Fall Large Scale: Problems with A* What is Search For? Example: N-Queens

Constraint Satisfaction

CS 188: Artificial Intelligence. Recap: Search

Chapter 27. Other Approaches to Reasoning and Representation

Constraint Satisfaction Problems (CSPs) Lecture 4 - Features and Constraints. CSPs as Graph searching problems. Example Domains. Dual Representations

AI Programming CS S-08 Local Search / Genetic Algorithms

Lecture 6: Constraint Satisfaction Problems (CSPs)

Satisfiability. Michail G. Lagoudakis. Department of Computer Science Duke University Durham, NC SATISFIABILITY

Midterm Examination CS 540-2: Introduction to Artificial Intelligence

Heuristic (Informed) Search

Informed Search and Exploration

CIS 192: Artificial Intelligence. Search and Constraint Satisfaction Alex Frias Nov. 30 th

Announcements. CS 188: Artificial Intelligence Spring Today. A* Review. Consistency. A* Graph Search Gone Wrong

Beyond Classical Search

Dr. Mustafa Jarrar. Chapter 4 Informed Searching. Sina Institute, University of Birzeit

Search and Optimization

CS 188: Artificial Intelligence Spring Announcements

Informed Search and Exploration

Constraint Satisfaction Problems. Chapter 6

Dr. Mustafa Jarrar. Chapter 4 Informed Searching. Artificial Intelligence. Sina Institute, University of Birzeit

March 19, Heuristics for Optimization. Outline. Problem formulation. Genetic algorithms

Constraint Satisfaction Problems (CSPs)

CS W4701 Artificial Intelligence

Artificial Intelligence

Week 8: Constraint Satisfaction Problems

Informed Search. Best-first search. Greedy best-first search. Intelligent Systems and HCI D7023E. Romania with step costs in km

CS 416, Artificial Intelligence Midterm Examination Fall 2004

Job Shop Scheduling Problem (JSSP) Genetic Algorithms Critical Block and DG distance Neighbourhood Search

Exam Topics. Search in Discrete State Spaces. What is intelligence? Adversarial Search. Which Algorithm? 6/1/2012

Non-deterministic Search techniques. Emma Hart

CS 4700: Artificial Intelligence

EECS 219C: Computer-Aided Verification Boolean Satisfiability Solving. Sanjit A. Seshia EECS, UC Berkeley

Transcription:

Local Search CS151 David Kauchak Fall 2010 http://www.youtube.com/watch?v=4pcl6-mjrnk Some material borrowed from: Sara Owsley Sood and others Administrative N-Queens problem Assign 1 grading Assign 2 extended (now due Friday at 5pm) try and finish at least alpha-beta (and ideally the heuristic) before Wed. good job to those who have already started! use this time to make better players I want a good tournament Will post Written 2 solutions Look for Written 3 soon... 1

N-Queens problem Local search What is the depth? 8 What is the branching factor? 8 8 8 = 17 million nodes Do we care about the path? What do we really care about? So far: systematic exploration: Explore full search space (possibly) using principled pruning (A*,... ) Best such algorithms (IDA*) can handle 10 100 states 500 binary-valued variables (ballpark figures only!) but... some real-world problem have 10,000 to 100,000 variables 10 30,000 states We need a completely different approach: Local Search Methods or Iterative Improvement Methods Local search Key difference: we don t care about the path to the solution, only the solution itself! Other similar problems? sudoku crossword puzzles VLSI design job scheduling Airline fleet scheduling http://www.innovativescheduling.com/company/ Publications/Papers.aspx Alternate Approach Start with a random configuration repeat generate a set of local next states move to one of these next states How is this different? 2

Local search Example: 4 Queens Start with a random configuration repeat generate a set of local next states State: 4 queens in 4 columns Generating random state: move to one of these next states any configuration any configuration without row conflicts? Requirements: ability to generate an initial, random guess generate the set of next states that are local criterion for evaluating what state to pick! Operations: move queen in column Goal test: no attacks Evaluation: h(state) = number of attacks Local search Local search Start with a random configuration Start with a random configuration repeat repeat generate a set of local next states generate a set of local next states move to one of these next states move to one of these next states Starting state and next states are generally constrained/specified by the problem How should we pick the next state to go to? 3

Greedy: Hill-climbing search Hill-Climbing Start with a random configuration repeat generate a set of local next states move to one of these next states pick the best one according to our heuristic again, unlike A* and others, we don t care about the path def hillclimbing(problem): """ This function takes a problem specification and returns a solution state which it finds via hill climbing """ currentnode = makenode(initialstate(problem)) while True: nextnode = gethighestsuccessor(currentnode,problem) if value(nextnode) <= value(currentnode): return currentnode currentnode = nextnode Example: n-queens Graph coloring What is the graph coloring problem? 3 steps! 4

Graph coloring Local search: graph 3-coloring Given a graph, label the nodes of the graph with n colors such that no two nodes connected by an edge have the same color Initial state? Is this a hard problem? Next states? NP-hard (NP-complete problem) Applications Heuristic/evaluation measure? scheduling sudoku Example: Graph Coloring 1. Start with random coloring of nodes 2. Change color of one node to reduce # of conflicts 3. Repeat 2 Example: Graph Coloring 1. Start with random coloring of nodes 2. Change color of one node to reduce # of conflicts 3. Repeat 2 Eval: number of conflicts, pairs adjacent nodes with the same color: 2 Eval: number of conflicts, adjacent nodes with the same color: 1 5

Example: Graph Coloring Hill-climbing Search: 8-queens problem 1. Start with random coloring of nodes 2. Change color of one node to reduce # of conflicts 3. Repeat 2 Eval: number of conflicts, adjacent nodes with the same color: h = number of pairs of queens that are attacking each other, either directly or indirectly h = 17 for the above state Hill-climbing search: 8-queens problem Problems with hill-climbing 86% of the time, this happens After 5 moves, we re here now what? 6

Hill-climbing Performance Problems with hill-climbing Complete? Optimal? Time Complexity Space Complexity Ideas? Idea 1: restart! Idea 1: restart! Random-restart hill climbing Random-restart hill climbing if we find a local minima/maxima start over again at a new random location if we find a local minima/maxima start over again at a new random location Pros: Pros: simple no memory increase for n-queens, usually a few restarts gets us there Cons: the 3 million queens problem can be solve in < 1 min! Cons: if space has a lot of local minima, will have to restart a lot loses any information we learned in the first search sometimes we may not know we re in a local minima/maxima 7

Idea 2: introduce randomness Idea 3: simulated annealing def hillclimbing(problem): """ This function takes a problem specification and returns a solution state which it finds via hill climbing """ currentnode = makenode(initialstate(problem)) while True: nextnode = gethighestsuccessor(currentnode,problem) if value(nextnode) <= value(currentnode): return currentnode currentnode = nextnode What the does the term annealing mean? When I proposed to my wife I was annealing down on one knee? Rather than always selecting the best, pick a random move with some probability sometimes pick best, sometimes random (epsilon greedy) make better states more likely, worse states less likely book just gives one many ways of introducing randomness! Idea 3: simulated annealing Simulated annealing What the does the term annealing mean? Early on, we may want a lot of randomness keeps it from getting stuck in local minima avoids getting lost on a plateau As time progress, allow less and less randomness in the moves made Specify a cooling schedule, which is how much randomness is included over time randomness time 8

Idea 4: why just 1 initial state? Local beam search: keep track of k states rather than just one Start with k randomly generated states At each iteration, all the successors of all k states are generated If any one is a goal state, stop; else select the k best successors from the complete list and repeat Local beam search Pros/cons? uses/utilized more memory over time, set of states can become very similar How is this different than just randomly restarting k times? What do you think regular beam search is? An aside Traditional beam search A few others A number of variants: BFS except only keep the top k at each level best-first search (e.g. greedy search or A*) but only keep the top k in the priority queue Complete? Used in many domains e.g. machine translation http://www.isi.edu/licensed-sw/pharaoh/ http://www.statmt.org/moses/ Stochastic beam search Instead of choosing k best from the pool, choose k semi-randomly Taboo list: prevent returning quickly to same state keep a fixed length list (queue) of visited states add most recent and drop the oldest never visit a state that s in the taboo list 9

Idea 5: genetic algorithms Genetic Algorithms We have a pool of k states Rather than pick from these, create new states by combining states Maintain a population of states A class of probabilistic optimization algorithms A genetic algorithm maintains a population of candidate solutions for the problem at hand, and makes it evolve by iteratively applying a set of stochastic operators Inspired by the biological evolution process Uses concepts of Natural Selection and Genetic Inheritance (Darwin 1859) Originally developed by John Holland (1975) The Algorithm 1. Randomly generate an initial population. 2. Select parents and reproduce the next generation 3. Randomly mutate some 4. Evaluate the fitness of the new generation 5. Discard old generation and keep some of the best from the new generation 6. Repeat step 2 though 4 till iteration N Parent 1 Parent 2 Child 1 Child 2 1 0 1 0 1 1 1 1 1 0 0 0 1 1 1 0 1 0 0 1 1 1 1 0 0 1 1 0 Mutation 10

Genetic algorithms Local Search Summary Local Search Example: SAT Surprisingly efficient search technique Wide range of applications Formal properties elusive Intuitive explanation: Search spaces are too large for systematic search anyway... Area will most likely continue to thrive Many real-world problems can be translated into propositional logic (A v B v C) ^ ( B v C v D) ^ (A v C v D)... solved by finding truth assignment to variables (A, B, C,... ) that satisfies the formula Applications planning and scheduling circuit diagnosis and synthesis deductive reasoning software testing... 11

Satisfiability Testing Greedy Local Search (Hill Climbing) Best-known systematic method: Davis-Putnam Procedure (1960) Backtracking depth-first search (DFS) through space of truth assignments (with unit-propagation) Greedy Local Search (Hill Climbing): GSAT GSAT vs. DP on Hard Random Instances GSAT: 1. Guess random truth assignment 2. Flip value assigned to the variable that yields the greatest # of satisfied clauses. (Note: Flip even if no improvement) 3. Repeat until all clauses satisfied, or have performed enough flips 4. If no sat-assign found, repeat entire process, starting from a different initial random assignment. 12

Experimental Results: Hard Random 3SAT Clustering Effectiveness: prob. that random initial assignment leads to a solution. Complete methods, such as DP, up to 400 variables Mixed Walk better than Simulated Annealing better than Basic GSAT better than Davis-Putnam Group together similar items. Find clusters. For example Hierarchical Clustering Recursive partitioning/merging of a data set 1-clustering 2 1 3 5 4 1 2 3 4 5 2-clustering 3-clustering 4-clustering 5-clustering 13

Dendogram Hierarchical clustering as local search Represents all partitionings of the data We can get a K clustering by looking at the connected components at any given level Frequently binary dendograms, but n-ary dendograms are generally easy to obtain with minor changes to the algorithms State? a hierarchical clustering of the data basically, a tree over the data huge state space! adjacent states? swap two sub-trees can also graft a sub-tree on somewhere else Swap without temporal constraints, example 1 Swap without temporal constraints, example 2 swap B and D swap (D,E) and C A B C D E A D C B E A B C D E A B D E C no change to the structure structure changed! 14

Hierarchical clustering as local search Hierarchical clustering as local search state criterion? state criterion? how close together are the k-clusterings defined by the hierarchical clustering weighted mean of k-clusterings sum of squared distances from cluster centers SS-Hierarchical vs. Ward s Local search for mancala? Yeast gene expression data set SS-Hierarchical Greedy, Ward s initialize 20 points 21.59 8 iterations 100 points 411.83 233 iterations 500 points 5276.30? iterations Ward s 21.99 444.15 5570.95 15