[Knowledge-based AI] {ud409} Lesson 13: 13 - Planning

Block Problem Revisited

Painting a Ceiling

States

Optional Reading: Winston Chapter 15, pages 323-336

Operators

Planning and State Spaces

plan:

Planning

Partial Planning

Detecting Conflicts

Open Preconditions

Hierarchical Task Network Planning

Hierarchical Decomposition

Hierarchical Planning

原文地址:https://www.cnblogs.com/ecoflex/p/10983052.html

时间: 2024-07-30 09:30:54

[Knowledge-based AI] {ud409} Lesson 13: 13 - Planning的相关文章

[Knowledge-based AI] {ud409} Lesson 2: 02 - Introduction to CS7637

Optional Readings : Putting Online Learning and Learning Sciences Togetherhttps://www.youtube.com/watch?v=N56ghCGmWWQ Understanding the Natural and Artificial Worldshttp://courses.washington.edu/thesisd/documents/Kun_Herbert%20Simon_Sciences_of_the_A

[Knowledge-based AI] {ud409} Lesson 12: 12 - Logic

Why do we need formal logic? Inferences About Birds Winston Chapter 13: Page 284 Exercise: Inferences About Foos Predicates Conjunctions and Disjunctions Implies Notation Equivalency Truth Tables 原文地址:https://www.cnblogs.com/ecoflex/p/10982993.html

[Knowledge-based AI] {ud409} Lesson 21: 21 - Configuration

Exercise: Designing a Basement Defining Configuration The Configuration Process left top: task right bottom: solution task v1 --- Configuration Space ---> solution v1 (search solution) solution v1 takes too long solution v1 --- Configuration Space --

[Knowledge-based AI] {ud409} Lesson 24: 24 - Meta-Reasoning

Mistakes in Reasoning and Learning Beyond Mistakes: Knowledge Gaps The Blurred Line Between Cognition and Metacognition Strategy Selection Strategy Integration Optional Reading: Metacognition in Computation: A selected research review by Michael T. C

[Knowledge-based AI] {ud409} Lesson 26: 26 - Wrap-Up

represent => reason => represent =>.... data => knowledge => data > ...... Current Research 原文地址:https://www.cnblogs.com/ecoflex/p/10987521.html

[Knowledge-based AI] {ud409} Lesson 19: 19 - Version Spaces

Optional reading: Winston Chapter 20 Incremental Concept Learning Revisited Abstract Version Spaces Visualizing Version Spaces converge model is thre representation of the world Example Food Allergies I Identification Trees decision tree learning Opt

[Knowledge-based AI] {ud409} Lesson 22: 22 - Diagnosis

Optional reading: Stefik, Chapter 9 diagnose as classification and abduction Exercise: Diagnosing Illness Defining Diagnosis Problems with Diagnosis as Classification Deduction, Induction, Abduction Optional Reading: Stefik, Diagnosis and Troubleshoo

[Knowledge-based AI] {ud409} Lesson 23: 23 - Learning by Correcting Mistakes

Optional Readings : Winston Chapter 18 http://courses.csail.mit.edu/6.034f/ai3/rest.pdf Questions for Correcting Mistakes Visualizing Error Detection Error Detection Algorithm Explanation-Free Repair Explaining the Mistake Correcting the Mistake Conn

练习13.13的一个有意思的现象

在做C++ Primer 5th的联系13.13时有一个很有意思的现象:当一个声明一个保存自定义类类型的vector时,如果在进行push_back操作之前这个vector的capacity和其size一致的话,则程序会向操作系统申请更多的内存以保存更多的元素.此时,整个vector会对其已经构建的元素重新全部构建一次(即调用拷贝构造函数),然后再在末尾元素之后构建新的元素.最后调用析构函数销毁扩容之前构建的元素. 下面直接看程序: //X结构体的定义 struct X { //默认构造函数 X