Unit 4: Features and Constraints (CSP and Backtracking)

ย 
ย 
Discussion
LJ

Types of AI Models

notion image
Reflex
  • Regression
  • Classification
ย 

Map Coloring (Example)

notion image
  • That can be solved using the state tree
  • It can be treated as a searching problem:
    • State: partial assignment of colors to provinces
    • Action: assign next uncolored province a compatible color
ย 
notion image
notion image
  • This approach is not efficient and takes a long time, so we use the factor graph method.

Variables-Based Models: Factor Graphs

notion image
  • Functions specifies the relationship between variables (or how they should be related)
  • Variables: , where
  • Factors: with each
  • Each assignment has a weight:
    • An assignment is consistent if
notion image
Objective of CSP:
  • Find the maximum weight assignment:
  • A CSP is satisfiable if
    • This requires global reasoning over all the factors
ย 
๐Ÿ“Œ
Note: weights cannot be negative like in ML
ย 

Constraints Satisfaction Problems (CSP)

Boolean satisfiability (SAT)
  • Variables are Booleans
  • Factors are logical formulas (AND, OR, NOT)
๐Ÿ“Œ
It is NP-complete, so in the worst case it is really hard, and there is no efficient problem that can solve it.

Types of CSPs

Linear programming (LP)
  • Variables are reals
  • Factors are linear inequalities:
Integer linear programming (ILP)
  • Same as LP but variables are integers
    • This makes it hard to solve like SAT
Mixed integer programming (MIP)
  • Same as LP but variables are reals and integers
    • This makes it hard to solve like SAT

Model Real-World Problems as CSPs

  • This lecture presents very useful demos on CSP
ย 
ย 
ย 
ย 

Resources