|
|
|
Many systems have been developed that help address one or more of these difficulties by limiting some of the power of first order logic in exchange for other advantages. One important one for A.I. programmers is to state that any or statement can have no more than one item in it that has a not in front of it. For esoteric reasons, it is dramatically more efficient to reason with these types of statements, called Horn clauses. The computer language Prolog is based on the use of Horn clauses. Another approach is to somehow arrange all the data using objects. Roughly speaking, by restricting the layout of our data by forcing into into a hierarchy of objects, we can make it easier for the computer to perform resolution on our objects and can also make it far easier for humans to understand the data, since humans are very adept at thinking about information that has been structured in such a way. These approaches also maintain enough of the power of first order logic to remain useful. In the next section we'll explore the use of objects in representing data in greater detail. Using objects to represent data is a natural process for humans. The basic steps of this process are basically the following:
Depending on the type of object technology we are dealing with, buckets may have different names- Classes, Frames, or Nodes are some common terms for this idea. The earliest form of this idea were network diagrams, which were originally mostly informal drawings of nodes (our buckets) and arrows representing the relationships between them: ![]() A Network Diagram This is clearly a very intuitive way to represent information- However, it is not a very rigorous way to represent data- For instance, in the diagram above, it says that "A nose is an organ" and that "A dog nose is a nose"- Even though these both involve an "is a" relationship, these are, intuitively, two different types of "is a" relationships (since the first statement is a new piece of information, whereas the other relationship can be roughly deduced from other parts of the picture) Network Diagrams do not, in their basic form, offer a mechanism for representing these more subtle relationships details. Eventually, these ideas spread in many directions and are now most commonly found in three different incarnations. First of all, computer language designers used these ideas to help structure computer algorithms, building computer languages such as Simula, Smalltalk, and Java. These languages are called object-oriented languages. The remaining two incarnations of this idea, which we will discuss next, evolved out of the A.I. community and are of more interest to us in terms of their potential for representing knowledge. Because of this, the A.I. community has had two approaches relating objects: The pragmatic approach, concerned with practical, imperfect methods for performing useful things such as recognizing things in pictures, scheduling delivery routes and other tasks where having a solution doesn't need to be perfect, but merely good enough. The basic object approach these pragmatists developed that is of interest to knowledge researchers is frame-based-reasoning. The other approach is more theoretical, focused on strict logical and symbolic methods for solving problems. This approach lead to the concept of description logics. Both of these object methodologies are based on idea of using abstract objects to categorize our information. Since these two ideas are still being refined, they continue to evolve towards each other- Frame-based systems continue to become more rigorous as ways are found to mathematically formalize them, whereas description logics continue to become more pragmatic as they incorporate more ideas from frame-based systems. The Pragmatists and Their Frames >> |