Home Up Contents

Multimodal Methods
Model Building Multimodal Methods Whither Directionality

 

 

Multimodal Methods of Information Transmission

This paper was presented to a symposium on MultiModal Methods - meaning ways of combining different ways of doing things - Expert Systems, Neural Networks, Constraint Programming, whatever - to handle a more complex problem than any of them can handle alone. The thrust of the paper is that MultiModal is a dead end - just another attempt at a priori categorisation and dissection of problems into presumed independent components (programming, in fact), instead of allowing the structure of the problem to shape its solution in a more flexible and general topology, such as knowledge networks - and needs to be read in that light.

Abstract

Different methods of transmission of information are described within a network formalisation of the analytic operators. Examples are given of where switching occurs between the methods. Control of switching is taking place at the lowest possible level, the operators themselves. It is suggested that, for complex high level tasks, no simple means of problem decomposition and assembly of separate dedicated subsystems is possible, nor is one needed.

Introduction

The desire for different modes of reasoning to attack different problems seems reasonable when the limitations of various current methods are assayed. It depends very much on the level of reasoning being attempted - are we comparing rapid response to a complex scene to the slow and painful accretion of new concepts over a period of years. Even at these extreme ends of the spectrum, some underlying flexibility of form and capability for self -modification is required if we are to use the term "reasoning". There have been many attempts to decompose problems into disparate elements to suit preconceived notions of reasoning methods or efficient algorithms. Except in narrow areas, the decomposition and reassembly process is rarely successful without destroying the essence of the problem, or requires a large effort on the part of the human users to hold all the pieces together in phase.

It might be worthwhile to analyse what is meant by multi-modal reasoning. Are there different forms of reasoning, exemplified by Expert Systems and Constraint Handling Systems, or are they merely narrow interpretations of more general reasoning. Are we searching for a common substrate, or for glue that will bind the methods that have been implemented. The search for a "glue" is reminiscent of the early descriptions of Expert Systems. An algorithm for combining rules would be described, followed by a description of the properties of the Help system to be implemented later that would explain the ES results. The flexibility and reasoning power of the Help system would far surpass the limitations of the Expert System algorithm, to the point where if you had the Help system, you could throw away the Expert System, because the Help system could do all that it could and more.

Similarly, if we could find a glue or "super-algorithm" which understood enough about the operation of each of the different modes of reasoning to be able to assign tasks, it could do all of the reasoning, perhaps not as efficiently but certainly more completely. Each of these modes of reasoning has made certain assumptions to allow operation in its specific domain. While these assumptions are understood by the users, they are difficult to specify in analytic terms.

Perhaps we should look more closely at the analytic terms we use. It turns out that we can hardly combine two analytic operators before we are forced to start stripping away inferences in our current implementations. With each inference lost, it becomes more important that a human user understand the intended use of the implementation. Our methods of analysis are incomplete, and have inconsistencies needing to be papered over by a human user, particularly at the interface between logic and numbers, or where existence of objects is relevant, or where topological change can occur during analysis.

A network implementation of analytic operators will be used to highlight some integration problems. This paper will discuss how the integration of different methods of information transmission through a common realised structure seems essential if we are to find a way of combining different modes of reasoning. The network is intended for use in high level planning and design, where there can be no artificial distinction among rules, relations and constraints. Planning requires that a potential structure be assembled, evaluated perhaps using consistent reasoning, and then the system move to a new, inconsistent state and continue. As different forms of reasoning are needed, different modes of information transmission through a common structure are utilised.

Reasoning Structure

The elements of the network structure are the analytic operators, ranging over objects, numbers and logic, and being close analogues of the common operators. The main distinction with previous attempts at network formalism is that an attempt has been made to fully model the basic properties of each operator so that no potential inference is lost. A simple logical constraint may serve as an introductory example.

 The structure implements

IF A < B THEN C < D

but contains far more than would be assumed from the text. The nodes and links may contain logical states, numeric values or lists of objects. The arrows on the connections indicate the potential directions of information flow. If A is actually less than B, then a TRUE flows out of the less than operator to the implication operator. If its control pin is asserted, a TRUE flows out of the consequent pin to the other less than operator. However, if C had been greater than D, then a FALSE would have flowed the other way. If control had not been asserted, a FALSE may have flowed out of the control pin. The structure is clearly a logical model, and its application to constraint reasoning and rule based reasoning should also be clear. An essential point is that it is not using Boolean logic. To do so would destroy too many potential inferences. Only if the problem is perfectly static can we be sure the inferences discarded will never be needed.

If we wish to combine methods of reasoning where the implementations have destroyed many inferences, either the system combining them may need to recreate the inferences, or we should not have destroyed them in the first place.

The conversion between text form and network structure is not always direct, as inferences may exist for us in the text form that would not survive direct conversion to network form with its operator independence. One such case is

IF A < B THEN X = 5

ELSE X = 10

We can easily conclude from this statement that X may have the range 5,10. When a statement such as this is converted to network form, additional structure is added to allow the inference (and structure to control the inference is also built - the statement itself may not be unconditionally true).

One other element needs explanation for the following discussion. A cluster of operators forming a statement itself becomes an element attached to a logical spine, over which control may be exercised, the spine beginning at a logical variable. An Unknowable state is used to control invalid statements, as a False state would imply inversion.

The realised network form allows extensibility, by a user and by the operators of the structure acting directly upon it. This extensibility is in clear distinction to some other methods which rely on a stack, up which they may become stuck.

The structure which performs the reasoning is both capable of change to its topology, and recovery from that change, unlike other methods which impose directional barriers as a result of either a misunderstanding of the meaning of analytic operators or as an artifact of their implementation.

Information Transmission and Structural Change

Transmission of information through the structure varies among

Searching

Dataflow with killing

Consistent dataflow

Dataflow with structure growth

Structure assembly and activation

depending on the purpose to which the structure is currently being put.

Searching moves through a structure initially empty of information, attempting to return to the search starting point with useful information.

Dataflow with killing causes information to be pushed down applicable pathways. If new information is to replace old, the old information is killed (the relevant part of the structure is emptied of information) before new information is transmitted.

Consistent dataflow allows new information to overlay old without killing, where the new information is consistent with the old, as a new range of 3..7 is consistent with an existing range of 2..10.

Dataflow with structure growth implies that arrival of information at a node causes growth of new structure, through which information is again transmitted, either from the originating node, or from the other structure to which the newly created structure becomes attached.

Structure assembly and activation describes where existing structures are sought and selected based on particular properties, they are connected and then logically activated by passing logical states to their spines.

Backtrack can occur on structure creation and change, all of the structure being made out of the same stuff.

All of these methods can be used together in any parallel combination or sequence. A search through a structure may identify an area suitable for consistent reasoning, which on completion causes killing of information or creation of new structure.

Some Examples

Bridging Methods Of Reasoning

Some constraint handling tools (CHARME) provide a Demon operator which will allow constraint solving to fall back to a programmatic means when appropriate - that is, when a change in the range occurs, a procedure is run. The analog for a network is a DEMON operator which can be built into the network structure, as shown in the diagram. Here the structure is identical in form on either side of the operator, the only difference being the method of transmission of information Control can be exercised so that bridging only occurs when the range has fallen to a low level, or when a unique value is presented.

Indexing

Lists may be indexed, as ASD[3]. The index may itself be a list, as

ASD[{BFG[GHJ[2,{FGH[3]}],4],PQR}]

The [ ] indicates the index value, the { } indicate a list structure. The index operator need understand nothing of the structure of the list, instead restricting itself to the operation of taking the element relevant to it from the list, then creating a new index operator and passing the remaining index to the new structure. If there are ranges in the index value, these ranges cause initial connection to all the objects as alternatives, with later pruning reducing the number of alternatives, as ASD[X], where X has the range 1,5..8,12. The same transmission mechanism that transmits lists in searching and dataflow also transmits alternatives in Consistent Reasoning.

It might be claimed that this form of indexing is no more than a crude form of parsing, except that it should be noted that the result of all this generational activity is to finally connect two or more objects, without any knowledge about direction of information flow, or if information flow is currently possible, and to have the method of connection reversible, both by killing and backtracking.

Start Hint

Resource usage is an important aspect of project planning. A resource usage operator in a planning network has consistent information on most of its connections, but also needs to handle information which is inconsistent with that already sent. A Start Hint is typical - there is some calculation that says where resource booking should preferentially occur, and the calculation changes its output value depending on the range and position of the available bookings. This new value, inconsistent with the last, must be transmitted through a network which everywhere else is using consistent dataflow. The diagram illustrates the different types of transmission - links marked with a 1 are using bidirectional dataflow, links marked with 2 have a value that is transmitted once, and the link marked with 3 has information that is repeatedly killed and retransmitted. The change in method of data transmission is occurring at the lowest possible level, at each operator. In this case, the receiving operator must understand its role. If killing escaped this single connection, all other information in the network would be destroyed. The example may not be defining, but it is a good example of how sterile a single method would be.

Application Area - High Level Planning

Business or project planning is typified by the construction of a model which simulates the expected behaviour of the real activity. The more complete and extensive the simulation, the more that people can come to understand the issues involved and the consequences of their actions. There will usually be constraints on the plan, there may be options which serve as cases, and there will usually be rules that need to be built into the model.

Consistent - Inconsistent - Consistent

The values used in Constraint Reasoning remain consistent as a way of ensuring that no constraint is violated. This works well until a situation develops where a change is necessary - there just isn't enough resource to do the job on time. Most plans go through many iterations before stabilising. A planning system that could not support all of the planning cycle would be of limited use, requiring the human users to fill in the gaps in its analytic capabilities. The method of information transmission needs to smoothly change from Consistent Dataflow throughout an area of the structure to Dataflow with Killing, so that a new state may be found that is inconsistent with the previous one. As killing proceeds, some of the structure may be taken apart and destroyed.

As already mentioned, Boolean logic is inappropriate in a high level area because of its destruction of knowledge. It should also be evident that a destructive method of reasoning, reductio ad absurdum, is inappropriate where a suitable structure has still to emerge as part of the planning process.

As an example of rules, there may be a clause in the project contract describing incentive payments that apply to completion.

In simple form, a rule linking project duration and project cost might be

IF ProjectDuration < 200 THEN Incentive = 400

ELSE Incentive = 0

This rule (or is it a constraint) is built into the network model, allowing an undirected connection between duration and cost. Additional constraints may be applied on either cost or duration, with resultant switching occurring within the structure of the rule.

Conclusion

Hopes that we can somehow implement large pieces of a problem using different methods of reasoning, then combine them at a high level are likely to prove false. Examples of high level planning illustrate that the planning problem would be destroyed if it were cut into elements seemingly suitable for different modes of reasoning. Put another way, the only level at which different forms of reasoning will be successfully combined is at the level of the analytic operators, because only they are in touch with the problem.

This brief overview of different methods of information transmission through a network structure may have illustrated how multimodal reasoning could have a common substrate.

See

Knowledge Representation