𝔖 Scriptorium
✦   LIBER   ✦

πŸ“

Python code for Artificial Intelligence: Foundations of Computational Agents

✍ Scribed by David L. Poole & Alan K. Mackworth


Publisher
Independently Published
Year
2023
Tongue
English
Leaves
368
Category
Library

⬇  Acquire This Volume

No coin nor oath required. For personal study only.

✦ Synopsis


AIPython contains runnable code for the book Artificial Intelligence, foundations

of computational agents, 3rd Edition[Poole and Mackworth, 2023]. It has the

following design goals

β€’ Readability is more important than efficiency, although the asymptotic

complexity is not compromised. AIPython is not a replacement for welldesigned libraries, or optimized tools. Think of it like a model of an engine made of glass, so you can see the inner workings; don’t expect it to

power a big truck, but it lets you see how a metal engine can power a

truck.

β€’ It uses as few libraries as possible. A reader only needs to understand

Python. Libraries hide details that we make explicit. The only library

used is matplotlib for plotting and drawing.

✦ Table of Contents


Contents
1 Python for Artificial Intelligence
1.1 Why Python?
1.2 Getting Python
1.3 Running Python
1.4 Pitfalls
1.5 Features of Python
1.5.1 f-strings
1.5.2 Lists, Tuples, Sets, Dictionaries and Comprehensions
1.5.3 Functions as first-class objects
1.5.4 Generators
1.6 Useful Libraries
1.6.1 Timing Code
1.6.2 Plotting: Matplotlib
1.7 Utilities
1.7.1 Display
1.7.2 Argmax
1.7.3 Probability
1.7.4 Dictionary Union
1.8 Testing Code
2 Agent Architectures and Hierarchical Control
2.1 Representing Agents and Environments
2.2 Paper buying agent and environment
2.2.1 The Environment
2.2.2 The Agent
2.2.3 Plotting
2.3 Hierarchical Controller
2.3.1 Environment
2.3.2 Body
2.3.3 Middle Layer
2.3.4 Top Layer
2.3.5 Plotting
3 Searching for Solutions
3.1 Representing Search Problems
3.1.1 Explicit Representation of Search Graph
3.1.2 Paths
3.1.3 Example Search Problems
3.2 Generic Searcher and Variants
3.2.1 Searcher
3.2.2 GUI for Tracing Search
3.2.3 Frontier as a Priority Queue
3.2.4 A* Search
3.2.5 Multiple Path Pruning
3.3 Branch-and-bound Search
4 Reasoning with Constraints
4.1 Constraint Satisfaction Problems
4.1.1 Variables
4.1.2 Constraints
4.1.3 CSPs
4.1.4 Examples
4.2 A Simple Depth-first Solver
4.3 Converting CSPs to Search Problems
4.4 Consistency Algorithms
4.4.1 Direct Implementation of Domain Splitting
4.4.2 Consistency GUI
4.4.3 Domain Splitting as an interface to graph searching
4.5 Solving CSPs using Stochastic Local Search
4.5.1 Any-conflict
4.5.2 Two-Stage Choice
4.5.3 Updatable Priority Queues
4.5.4 Plotting Run-Time Distributions
4.5.5 Testing
4.6 Discrete Optimization
4.6.1 Branch-and-bound Search
5 Propositions and Inference
5.1 Representing Knowledge Bases
5.2 Bottom-up Proofs (with askables)
5.3 Top-down Proofs (with askables)
5.4 Debugging and Explanation
5.5 Assumables
5.6 Negation-as-failure
6 Deterministic Planning
6.1 Representing Actions and Planning Problems
6.1.1 Robot Delivery Domain
6.1.2 Blocks World
6.2 Forward Planning
6.2.1 Defining Heuristics for a Planner
6.3 Regression Planning
6.3.1 Defining Heuristics for a Regression Planner
6.4 Planning as a CSP
6.5 Partial-Order Planning
7 Supervised Machine Learning
7.1 Representations of Data and Predictions
7.1.1 Creating Boolean Conditions from Features
7.1.2 Evaluating Predictions
7.1.3 Creating Test and Training Sets
7.1.4 Importing Data From File
7.1.5 Augmented Features
7.2 Generic Learner Interface
7.3 Learning With No Input Features
7.3.1 Evaluation
7.4 Decision Tree Learning
7.5 Cross Validation and Parameter Tuning
7.6 Linear Regression and Classification
7.7 Boosting
7.7.1 Gradient Tree Boosting
8 Neural Networks and Deep Learning
8.1 Layers
8.2 Feedforward Networks
8.3 Improved Optimization
8.3.1 Momentum
8.3.2 RMS-Prop
8.4 Dropout
8.4.1 Examples
9 Reasoning with Uncertainty
9.1 Representing Probabilistic Models
9.2 Representing Factors
9.3 Conditional Probability Distributions
9.3.1 Logistic Regression
9.3.2 Noisy-or
9.3.3 Tabular Factors and Prob
9.3.4 Decision Tree Representations of Factors
9.4 Graphical Models
9.4.1 Showing Belief Networks
9.4.2 Example Belief Networks
9.5 Inference Methods
9.5.1 Showing Posterior Distributions
9.6 Naive Search
9.7 Recursive Conditioning
9.8 Variable Elimination
9.9 Stochastic Simulation
9.9.1 Sampling from a discrete distribution
9.9.2 Sampling Methods for Belief Network Inference
9.9.3 Rejection Sampling
9.9.4 Likelihood Weighting
9.9.5 Particle Filtering
9.9.6 Examples
9.9.7 Gibbs Sampling
9.9.8 Plotting Behavior of Stochastic Simulators
9.10 Hidden Markov Models
9.10.1 Exact Filtering for HMMs
9.10.2 Localization
9.10.3 Particle Filtering for HMMs
9.10.4 Generating Examples
9.11 Dynamic Belief Networks
9.11.1 Representing Dynamic Belief Networks
9.11.2 Unrolling DBNs
9.11.3 DBN Filtering
10 Learning with Uncertainty
10.1 Bayesian Learning
10.2 K-means
10.3 EM
11 Causality
11.1 Do Questions
11.2 Counterfactual Example
12 Planning with Uncertainty
12.1 Decision Networks
12.1.1 Example Decision Networks
12.1.2 Decision Functions
12.1.3 Recursive Conditioning for decision networks
12.1.4 Variable elimination for decision networks
12.2 Markov Decision Processes
12.2.1 Problem Domains
12.2.2 Value Iteration
12.2.3 Value Iteration GUI for Grid Domains
12.2.4 Asynchronous Value Iteration
13 Reinforcement Learning
13.1 Representing Agents and Environments
13.1.1 Environments
13.1.2 Agents
13.1.3 Simulating an Environment-Agent Interaction
13.1.4 Party Environment
13.1.5 Environment from a Problem Domain
13.1.6 Monster Game Environment
13.2 Q Learning
13.2.1 Exploration Strategies
13.2.2 Testing Q-learning
13.3 Q-leaning with Experience Replay
13.4 Model-based Reinforcement Learner
13.5 Reinforcement Learning with Features
13.5.1 Representing Features
13.5.2 Feature-based RL learner
13.6 GUI for RL
14 Multiagent Systems
14.1 Minimax
14.1.1 Creating a two-player game
14.1.2 Minimax and - Pruning
14.2 Multiagent Learning
15 Relational Learning
15.1 Collaborative Filtering
15.1.1 Plotting
15.1.2 Creating Rating Sets
15.2 Relational Probabilistic Models
16 Version History
Bibliography
Index


πŸ“œ SIMILAR VOLUMES


Python code for Artificial Intelligence:
✍ David L. Poole, Alan K. Mackworth πŸ“‚ Library πŸ“… 2024 πŸ› Independently Published 🌐 English

AIPython contains runnable code for the book Artificial Intelligence, foundations of computational agents, 3rd Edition[Poole and Mackworth, 2023]. It has the following design goals β€’ Readability is more important than efficiency, although the asymptotic complexity is not compromised. AIPython is

Artificial Intelligence: Foundations of
✍ David L. Poole, Alan K. Mackworth πŸ“‚ Library πŸ“… 2010 πŸ› Cambridge University Press 🌐 English

Recent decades have witnessed the emergence of artificial intelligence as a serious science and engineering discipline. Artificial Intelligence: Foundations of Computational Agents is a textbook aimed at junior to senior undergraduate students and first-year graduate students. It presents artificial

Artificial Intelligence: Foundations of
✍ David L., Mackworth Alan K. πŸ“‚ Library πŸ“… 2010 πŸ› Cambridge University Press 🌐 English

Recent decades have witnessed the emergence of artificial intelligence as a serious science and engineering discipline. Artificial Intelligence: Foundations of Computational Agents is a textbook aimed at junior to senior undergraduate students and first-year graduate students. It presents artificial

Artificial Intelligence: Foundations of
✍ David L. Poole; Alan K Mackworth πŸ“‚ Library πŸ“… 2017 πŸ› Cambridge University Press 🌐 English

Artificial intelligence, including machine learning, has emerged as a transformational science and engineering discipline. Artificial Intelligence: Foundations of Computational Agents presents AI using a coherent framework to study the design of intelligent computational agents. By showing how the b

Artificial intelligence foundations of c
✍ Mackworth, Alan K.;Poole, David L πŸ“‚ Library πŸ“… 2011 πŸ› Cambridge Univ. Press 🌐 English

Machine generated contents note: Part I. Agents in the World: What Are Agents and How Can They Be Built?: 1. Artificial intelligence and agents; 2. Agent architectures and hierarchical control; Part II. Representing and Reasoning: 3. States and searching; 4. Features and constraints; 5. Propositions