1 / 21

Knowledge Representation and Reasoning (KR): A vibrant subfield of AI Jia You

Knowledge Representation and Reasoning (KR): A vibrant subfield of AI Jia You. Related Field. Computational logic Constraints/Constraint Programming Declarative programming Logic programming (not Prolog). Intelligent Agent.

reia
Télécharger la présentation

Knowledge Representation and Reasoning (KR): A vibrant subfield of AI Jia You

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Knowledge Representation and Reasoning (KR):A vibrant subfield of AIJia You

  2. Related Field • Computational logic • Constraints/Constraint Programming • Declarative programming • Logic programming (not Prolog)

  3. Intelligent Agent • Can acquire knowledge through various means such as learning from experience, observations, reading, etc., and • Can reason with this knowledge to make plans, explain observations, achieve goals, etc.

  4. To learn knowledge and to reason with it • we need to know how to represent knowledge in a computer readable format. • McCarthy 1959 in Programs with commonsense: “In order for a program to be capable of learning something it must first be capable of being told it.”

  5. What does KR entail? • We need languages and corresponding methodologies to represent various kinds of knowledge, and be able to reason with it. • Forms of reasoning: deduction, abduction, induction, default reasoning, common-sense reasoning, …

  6. Importance of Inventing Suitable KR Languages Development of a suitable knowledge representation language and methodology is as important to AI systems as Calculus is to Physics and Engineering.

  7. What basic properties should a suitable “calculus” of KR possess? • have a simple and intuitive syntax and semantics; • allow us to withdraw our conclusions; • allow us to represent and reason with incomplete information; and • allow us to express and answer problem solving queries such as planning queries, explanation queries and diagnostic queries.

  8. Inadequacy of first order logic • It is monotonic: More information one has, more consequences one gets. • Human communication is typically based on closed world assumption.

  9. An Example of Closed World Assumption ground-wet  watering. ground-wet  raining. • In an open world, there could be other reasons that cause ground-wet (we simply don’t know, or have not said). • But in a closed world, what we said is all that we know, for Horn clauses, this is called Clark Completion. Ground-wet watering  raining

  10. This is to say … • We need to study the semantics of KR languages.

  11. Answer Set Programming (ASP) A program is a collection of rules of form: A  B1, …, Bm, not C1, …, not Cn where A, Bj and Ck are atoms. Intended “models” of a program are called answer sets.

  12. Does tweety fly? • fly(X)  bird(X), not ab(X). ab(X)  penguin(X). bird(X)  penguin(X). bird(tweety). • We conclude fly(tweety). • But if we add • penguin(tweety). • We can no longer conclude fly(tweety)

  13. Weight and Cardinality Constraints • An important extension, where an atom can be a weight/cardinality constraint: L {a1 = w1, …, an = wn } U where ai are atoms and wj are weights. E.g. Given a set = {b,c,d,e}, to express all subsets containing a, we can write a  0 {b,c,d,e} 4  a.

  14. Colorability Given a map and k colors, is it possible to color the map so that no adjacent regions have the same color? Represented by a graph: • Each vertex is colored with exactly one color; • no two vertices connected by an edge have the same color.

  15. A program solving 3-colorability % Each vertex is colored with exactly one color: 1 {color(V,red), color(V,blue),color(V,yellow) } 1  vertex(V). % No adjacent vertexes may be colored with the same color. • vertex(V), vertex(U), edge(V,U), isAcolor(C), color(V,C), color(U,C).

  16. Hamiltonian Cycle Given a set of facts defining the vertices and edges of a directed graph and a starting vertex v0,find a path that visits every vertex exactly once.

  17. Any subset of edges could be on such a path 0 {in(U,V) : edge(U,V) }. A path must be chained to form a sequence over the edges on it: reachable(V)  in(v0,V). reachable(V)  reachable(U), in(U,V). A vertex cannot be visited more than once.  edge(U,V), in(U,V), edge(W,V), in(W,V), U  W.  edge(U,V), in(U,V), edge(U,W), in(U,W), V  W. Don’t forget to say that every vertex must be reached.  vertex(U), not reachable(U).

  18. Planning Represented by a program that expresses: Action choice which action(s) should be chosen at each state Affected objects the affected objects by an action Effects if affected, what are the effects Frame axioms if not affected by any action at a state, the fluents that hold at the current state remain to hold in the next state.

  19. Is ASP a good candidate? • Simple syntax • It is non-monotonic. • Can express defaults and their exceptions. • Can represent and reason with incomplete information. • Various implementations: Smodels, DLV, ASSAT, CModels, … • Many applications built using it. • Its initial paper among the top 5 AI source documents in terms of citeseer citation.

  20. What else we should do about ASP? • Extensions and semantics; • Need building block results; • The bottleneck: a program may be too large for answer set computation; • should have systems that can learn knowledge in this language; • Improving search efficiency - domain dependent knowledge in planning - techniques related to SAT ……

  21. Some of resent publications F Lin and J You. Abductive logic programming by nongroundrewrite systems. AAAI-08. J You and G Liu. Loop formulas for logic programs with arbitrary constraint atoms. AAAI-08. Y Shen and J You. A generalized Gelfond-Lifschitz transformation for logic programs with abstract constraints. AAAI-07. G Wu, J You, G Lin. Quartet based phylogeny reconstruction with answer set programming. IEEE/ACM Transactions on Computational Biology and Bioinformatics 2007. F. Lin and J You. Recycling computed answers in rewrite systems for abduction. ACM Transactions on Computational Logic 2007. T Janhunen, I. Niemela, D. Seipel, P. Simons, J. You. Unfolding partiality and disjunctions in stable model semantics. ACM Transactions on Computational Logic 2006.

More Related