Application Design: Issues in Expert System Architecture. Harry C. Reinstein Janice S. Aikins
|
|
|
- Kristian Johns
- 10 years ago
- Views:
Transcription
1 Application Design: Issues in Expert System Architecture Harry C. Reinstein Janice S. Aikins IBM Scientific Center Page Mill Road P. 0. Box Palo Alto, Ca USA ABSTRACT We describe an expert system that has been applied to the task of application design. Users supply the system with problem specifications, such as the required output data, and the system produces a graphic representation of the completed application in the form of a flow diagram. The application design task has forced us to consider two important issues in expert system architecture: constraint processing and the explicit representation of control flow. The resulting knowledge representation and control logic are discussed. I Introduction Computers are commonly used in a wide variety of application design areas. Building the application programs, however, is often a difficult and frustrating task requiring the blending of both domain-specific and computer-specific expertise. It is frequently the case that the application problem expert is not a computer expert and must seek the help of appropriate computer professionals whose availability and skills may be limited. This problem has received considerable attention and work is proceeding along several paths in pursuit of an effective solution [1,2 ]. This paper presents an expert system which assists in preparing a well-formed definition of a desired application. This definition is presented in the form of a program flow chart showing the proper configuration of input devices, data processing functions, and output devices needed to produce the desired result. The flow chart is developed from a knowledge base which includes representations of data transformations valid within the problem domain. For example, if the problem domain is payroll applications a transformation relating GR0SS_PAY to NET_PAY would be represented in the knowledge base and would include references to data processing functions required to enact the transformation. A notable feature of application definition is the dual nature of the expertise required; an effective consultant must have knowledge of both the specific application domain (e.g., payroll applications) and of more general application design principles. Several interesting problems in expert system architecture have been encountered, especially in the areas of constraint processing and control flow. A discussion of these areas comprises the bulk of this paper. We begin, however, with an elaboration of the task performed and a discussion of our choice of knowledge representation and constraint architecture. I The Task Figure 1 shows a flow diagram of a simple payroll application. The task of the system is to produce this chart from an initial statement of the desired program outputs. The system is expected to select appropriate devices and processing functions for the application and to infer or obtain values for relevant application parameters (e.g., file names). The driving mechanism for this process is a search to find a sequence of known data transformations (e.g., GROSS-PAY to NET-PAY) which begins with device-available data and ends with the desired output data. Transformation descriptions include knowledge of the processing functions required to effect the transformation. These functions may themselves introduce additional data elements into the flow diagram. Processing each element of the flow diagram until there are no unambiguous references to other elements will produce a complete application description. The consultation dialog involves the user in two ways. First, there is the requirement to obtain non-inferrable parameters such as APPLICATION-NAME. Second, the system enlists the user in the selection of specific elements of the application flow diagram whenever the application definition is inadequately constrained to permit an unambiguous, automatic selection. This part of the consultation may be conducted at several levels, ranging from direct inquiry for the identity of the element to the acquisition of application constraints that may themselves implicitly permit the disambiguation of the element in question (3 I. Ill The Knowledge Base The primary knowledge in the system is organized into frame-like [4,5] objects with attributes. Each element of the flow diagram is represented as a particular frame in the knowledge 888
2 TRANSFORMATION - Summary knowledge of the possible data-to-data transformations. TRANFORMATIONs reference many other elements in the knowledge base including DATA (what is transformed to what), DEVICE (for input and output transformations), and FUNCTION (the process that does the transformation). As an example, a DATA-ACCESS TRANSFORMATION could be defined to retrieve stored information. The particular function employed might depend on the file structure of the data to be accessed. Multiple file structures could then lead to a specialization hierarchy of DATA-ACCESS TRANSFORMATIONS. The flow diagram resulting from a particular consultation is represented in the same formalism and data structures as the static knowledge initially available to the system. (The initial knowledge structure is called the static knowledge base while the results of a particular consultation are called the dynamic knowledge base. As elements of the diagram are created they are associated with the most specialized frame description appropriate to that element. For example, a DATA-ACCESS TRANSFORMATION element may be created without yet knowing which actual access transformation will be employed. The constraint expression causing the creation is then re-evaluated in the context of any dynamically created DATA-ACCESS TRANSFORMATION elements. The resolution of constrained entity references (which is dependent on both the entity context for the resolution and on the dynamic state of the knowledge structure) has presented several challenges to the constraint resolution architecture. IV THE CONSTRAINT ARCHITECTURE base. Specialization hierarchies [ 6] are employed and a rich set of inter-object references exists. The system has been programmed in APL and uses a knowledge editor to build the objects (called ENTITIES) and their attribute descriptions (called SLOTS). The entities knowledge base includes the four types of described below. DATA - The domain specific data processed by the applications of interest. DEVICE - Input, output, and storage devices which may be used in the application. Devices are related to the data they can access or produce. (File data, for example, can only be referenced by a particular class of devices.) FUNCTION - Existing (pre-programmed) processing routines which operate on data relevent to the problem domain. FUNCTIONS reference the DATA they process and produce. Recent work has highlighted the role of constraints in processing frame or semantic network knowledge. (See, for example, [7].) Constraint processing has generally been used to limit search space, principally by applying constraints to a static collection of objects with the hope of finding only a subset which meet the constraints. The constraints to be applied come from several sources, the most common of which are the knowledge base itself and values for specific parameters generated within the consultation session. Constraint processing is employed in our system to control the traversal of the knowledge structures and the selection of entities for inclusion in the flow diagram. Constraints are used in building specialization hierarchies, and in specifying references from one entity to another. It is commonly found that these inter-connections between entities within specialization hierarchies become more constrained as one traverses the specialization paths; this permits specialization traversal over one type of object to implicitly constrain selection of a related object. (Knowing the data to be obtained, for example, will often constrain the choice of access mechanism.) An element admitted to the flow diagram may be associated with any level in a specialization hierarchy; subsequent discovery of 889
3 additional constraints (either from user interaction or specialization of a related element) then permits association of this element with increasingly more specialized entities in the knowledge base. In general, a consultation is complete when all elements of the flow diagram are associated with leaves in the specialization hierarchies, and all references made by these elements have been admitted to the diagram. The application design task required an extension to the concept of constraint processing as a static selection process. Constrained entity references in the static knowledge base must produce instantiation of the appropreiate objects in the dynamic knowledge base, and cause the proper inter-entity references to be created. While it is possible for a single static reference to produce several dynamic instantiations (several instances a particular processing function, for example) it may also be the case that a suitable dynamic object already exixts and must be found when the constraining reference is resolved. Since correct inter-connection is fundamental to the flow diagram problem, a mechanism was needed not only to be able to state the general interconnection constraints in the static knowledge base, but also to instantiate the specific interconnections of the dynamically created flow diagram. This mechanism is described below. WITH slotl IS THIS-ENTITY-NAME then the processing of these constraints in the static knowledge base should provide a general limitation of acceptable candidates while processing these constraints in the dynamic environment must force the specific interconnection references. To accomplish this, two architectural principles were established. 1. References from one entity to another must cause the creation of a new dynamic object if the reference is from an existing dynamic object and the resolution is to a static object. 2. When processing a constrained reference to a dynamic object, the constraints are imposed on the target (constrained) slot. Principle (1) causes the creation of the elements of the flow diagram, once an initial dynamic entity has been created. Consider the case where an instance of entity A has been created and slotl of entity A is being evaluated. Its resolution will be a reference to entity B in the static knowledge base which will cause the creation of a dynamic instance of entity B, by principle (1). The constraint expression in slotl of A (which further constrains slot2 of B to contain a pointer back to A) is now imposed on slot2 of entity B by principle (2). This effects the correct interconnection by mutal reference required in the flow diagram. Several complications occur. To begin with, consider the case where the entity selection dictated by a constraint expression resolves to a list of potential candidates. Principle (2) requires that constraints be imposed on the dynamic object, but in this case no single object exists. We build a representation for this ambiguous object in order to record the constraint. These objects are used to represent the general class of entities that can satisfy the known constraints; the posting of new constraints may have the effect of redefining the class (to a subset) or of selecting a single entity from the class. This concept is critical to a consultation in which focus of attention can change before a fully instantiated form of the entity is determined. Our constraint architecture has been designed to permit maximum flexibility in representing classes of entities as the result of constrained searches. Another problem occurs in the mutual reference case described above. We find here that the processing of slotl in entity A requires the evaluation of slot2 of entity B which, in turn, requires the evaluation of slotl in entity A. A looping situation is established and needs to be detected and properly processed. This requirement was one of several that led us to extend our concepts of the control flow mechanism in the consultation system. 890
4 V THE CONTROL ARCHITECTURE The sequence of processing steps and its implication on focus of attention has been recognized as a critical issue in expert system design 8. In most systems, control flow logic is cast in programming, a formalism not famed for its transparency or ease of modification. In systems with programmed control flow, developing a natural and and correct consultation requires a careful knowledge design and familiarity with the internal control logic. The recognition that the overall strategy for knowledge processing may reflect domain-specific expertise (e.g., when to look at what knowledge and what sequence of steps to follow) has led some architects to provide a formal knowledge representation for control [7,8]. This seems inherently correct and the system presented here reflects the authors' belief that control flow must be designed in a manner that permits modification by problem-domain experts, and that a suitable formalism must be found. In our system the major processing is accomplished by a collection of PRIMITIVE ROUTINES designed to operate on our frame-structured knowledge representation. Examples of primitive routines are: Create a dynamic object Resolve slot semantics Interact with users Specialize a more general dynamic object These routines do not communicate directly with each other; if one primitive determines that another primitive should be executed, it interacts with a SCHEDULING FUNCTION to schedule the execution of that task. Primitive routines to be executed are represented in an AGENDA which lists the identification of the primitive, the processing context in which it is to be run, and control information for the scheduling function. In our current implementation the agenda grows continuously with each new item scheduled and serves as our trace history information. Primitives may be scheduled for either dependent or independent execution. Dependent scheduling forces the complete execution of the scheduled primitive before the primitive requesting that scheduling is resumed. In the case of independent scheduling the order of execution is arbitrary. Both the ordering of execution of pending agenda items and the automatic creation of agenda items (depending on the dialog state) reflect expertise that should be modifiable by and transparent to the problem expert. To effect this, antecedent-driven PRODUCTION RULES have been chosen to represent control knowledge. This choice was dictated mainly by our desire to permit non-programmers to enter and maintain expertise concerning the course (control flow) of a dialog. In particular, the current focus of attention for the dialog has often turned out to be properly a function of domain specific expertise rather than a result of domain independent, general dialog processing. This observation led us away from approaches such as attached procedures and toward more formal knowledge representations. The control rules may be invoked at either the time a primitive is scheduled or when a primitive terminates, and may reference the current agenda information as well as the general dynamic state of the consultation. As an example, consider architectural principle (1), stated earlier, concerning the creation of a dynamic object based on the results of slot resolution. This piece of control logic is dictated by the particular task domain (flow diagram creation) and is reflected in an appropriate rule which is processed at the termination of the slot resolution primitive. In a similiar manner, the control logic to properly evaluate the constrained mutual references (described in the previous section) and inhibit looping is reflected in rules processed within the scheduling function. Specifically, when the agenda state reflects the occurence of a referencing loop the system forces the commitment to the mutual reference and processing continues. Both the debugging and the modification of control flow in our consultations has beer, greatly facilitated by this design. Our experience, however, suggests several important future efforts. VI THE SYSTEM STATUS AND FUTURE WORK In the current implementation the control rules are implemented as APL code; this is to be changed to a formal data representation for the rules, coupled with a rule processing inference engine. The current knowledge base has been developed for medical sensor-based computing applications (the payroll example in this paper was chosen for its widespread familiarity), but has not been subjected to use as a production tool in a suitable laboratory environment. Sample dialogs have been run on limited test cases. This system has been developed to ensure applicability to multiple task domains. To this end, generality has been introduced (e.g., in the control architecture) that might not have been required otherwise. It is our intent to apply the system to another task domain. Others we have considered include system configuration, and diagnosis (medical or otherwise). In this last case, we envision a major replacement of control rules to accomplish inferential diagnostic processing (as in MYCIN [9.1), through the formalism of frame instantiation. Another interesting experiment would be to develop a MOLGEN-like system 7, in which the control flow reflects a strategy of 'least commitment', instead of our current system which adopts a strategy of 'greatest commitment'. Once again, we envision the changes to be limited principally to the control rules. 891
5 VII CONCLUSIONS The issues of control flow are critical to an expert system. Both task-specific and domain-specific expertise is involved, and a suitable formalism must be established for capturing and effecting this expertise. Antecedent production rules seem suitable to this task. Frame-based systems are powerful problem solvers, especially when a general approach to constraint processing is taken. A system must have the ability to represent ambiguous results of constrained searches and to post further constraints to those representations as a means of possible disambiguation. It is our belief that systems with mixed knowledge representations are easier to build and may be applicable to a wider variety of task domains. We further believe that a knowledge engineer should use representations that most naturally reflect knowledge to the appropriate expert, and that the use of multiple representations facilitates this goal. Our current implementation has provided us with a sound experimental base for future development. The task of application design has forced us to address several important issues in expert system architecture, and is a potentially useful application of expert system technology. REFERENCES [ 1] Proceedings of a Conference on Application Development Systems, Data Base, Vol. 11, No. 3, 1980 (ACM order number ). [2] Proceedings Application Development Symposium, GUIDE/SHARE/IBM, October, [3] Reinstein, H.C. "Problem Solving in Frame-Structured Systems Using Interactive Dialog" In Proceedings AAA1, Stanford Ca., August, 1980, pp [4] Minsky, M. "A Framework for Representing Knowledge" In P. Winston (Ed.) The Psychology of Computer Vision, New York, McGraw-Hill, 1975, pp [5] Fikes, R. and Hendricks, G. "A Network Based Representation and its Natural Deduction System" In Proc. 1JCAI-77. Cambridge, Massachusetts, August, 1977, pp [6] Bobrow, D. and Winograd, T. "An Overview of KRL, a Knowledge Representation Language." Cognitive Science, 1:1 (1977), [7] Stefik, M.J. Planning with Constraints, Ph.D. Thesis, Stanford University, ['8] Aikins, J.S. Prototypes and Production Rules: A Knowledge Representation for Computer Consultations, Ph.D. Thesis, Stanford University, [9] Shortliffe E.H. Computer Based Medical Consultations: MYCIN, New York, New York, American Elsevier,
ACE: AN EXPERT SYSTEM FOR TELEPHONE CABLE MAINTENANCE. Frederick D. Miller*, David H. Copp
ACE: AN EXPERT SYSTEM FOR TELEPHONE CABLE MAINTENANCE Gregg T. Vesonder*, Salvatore J. Stolfo**, John E. Zielinski*, Frederick D. Miller*, David H. Copp * Bell Laboratories, Whippany, NJ. ** Columbia University,
Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao
Requirements Analysis Concepts & Principles Instructor: Dr. Jerry Gao Requirements Analysis Concepts and Principles - Requirements Analysis - Communication Techniques - Initiating the Process - Facilitated
Semantic Search in Portals using Ontologies
Semantic Search in Portals using Ontologies Wallace Anacleto Pinheiro Ana Maria de C. Moura Military Institute of Engineering - IME/RJ Department of Computer Engineering - Rio de Janeiro - Brazil [awallace,anamoura]@de9.ime.eb.br
Ontology and automatic code generation on modeling and simulation
Ontology and automatic code generation on modeling and simulation Youcef Gheraibia Computing Department University Md Messadia Souk Ahras, 41000, Algeria [email protected] Abdelhabib Bourouis
Social Data Science for Intelligent Cities
Social Data Science for Intelligent Cities The Role of Social Media for Sensing Crowds Prof.dr.ir. Geert-Jan Houben TU Delft Web Information Systems & Delft Data Science WIS - Web Information Systems Why
Frequency, definition Modifiability, existence of multiple operations & strategies
Human Computer Interaction Intro HCI 1 HCI's Goal Users Improve Productivity computer users Tasks software engineers Users System Cognitive models of people as information processing systems Knowledge
Reusable Knowledge-based Components for Building Software. Applications: A Knowledge Modelling Approach
Reusable Knowledge-based Components for Building Software Applications: A Knowledge Modelling Approach Martin Molina, Jose L. Sierra, Jose Cuena Department of Artificial Intelligence, Technical University
Stephen M. Fiore, Ph.D. University of Central Florida Cognitive Sciences, Department of Philosophy and Institute for Simulation & Training
Stephen M. Fiore, Ph.D. University of Central Florida Cognitive Sciences, Department of Philosophy and Institute for Simulation & Training Fiore, S. M. (2015). Collaboration Technologies and the Science
Overview of the TACITUS Project
Overview of the TACITUS Project Jerry R. Hobbs Artificial Intelligence Center SRI International 1 Aims of the Project The specific aim of the TACITUS project is to develop interpretation processes for
CHAPTER 1 INTRODUCTION
1 CHAPTER 1 INTRODUCTION Exploration is a process of discovery. In the database exploration process, an analyst executes a sequence of transformations over a collection of data structures to discover useful
Classnotes 5: 1. Design and Information Flow A data flow diagram (DFD) is a graphical technique that is used to depict information flow, i.e.
Classnotes 5: 1. Design and Information Flow A data flow diagram (DFD) is a graphical technique that is used to depict information flow, i.e., a representation of information as a continuous flow that
Business-Driven Software Engineering Lecture 3 Foundations of Processes
Business-Driven Software Engineering Lecture 3 Foundations of Processes Jochen Küster [email protected] Agenda Introduction and Background Process Modeling Foundations Activities and Process Models Summary
OBJECT RECOGNITION IN THE ANIMATION SYSTEM
OBJECT RECOGNITION IN THE ANIMATION SYSTEM Peter L. Stanchev, Boyan Dimitrov, Vladimir Rykov Kettering Unuversity, Flint, Michigan 48504, USA {pstanche, bdimitro, vrykov}@kettering.edu ABSTRACT This work
Fuzzy Knowledge Base System for Fault Tracing of Marine Diesel Engine
Fuzzy Knowledge Base System for Fault Tracing of Marine Diesel Engine 99 Fuzzy Knowledge Base System for Fault Tracing of Marine Diesel Engine Faculty of Computers and Information Menufiya University-Shabin
THE IMPACT OF INHERITANCE ON SECURITY IN OBJECT-ORIENTED DATABASE SYSTEMS
THE IMPACT OF INHERITANCE ON SECURITY IN OBJECT-ORIENTED DATABASE SYSTEMS David L. Spooner Computer Science Department Rensselaer Polytechnic Institute Troy, New York 12180 The object-oriented programming
2 AIMS: an Agent-based Intelligent Tool for Informational Support
Aroyo, L. & Dicheva, D. (2000). Domain and user knowledge in a web-based courseware engineering course, knowledge-based software engineering. In T. Hruska, M. Hashimoto (Eds.) Joint Conference knowledge-based
IAI : Expert Systems
IAI : Expert Systems John A. Bullinaria, 2005 1. What is an Expert System? 2. The Architecture of Expert Systems 3. Knowledge Acquisition 4. Representing the Knowledge 5. The Inference Engine 6. The Rete-Algorithm
Managing and Tracing the Traversal of Process Clouds with Templates, Agendas and Artifacts
Managing and Tracing the Traversal of Process Clouds with Templates, Agendas and Artifacts Marian Benner, Matthias Book, Tobias Brückmann, Volker Gruhn, Thomas Richter, Sema Seyhan paluno The Ruhr Institute
Technology WHITE PAPER
Technology WHITE PAPER What We Do Neota Logic builds software with which the knowledge of experts can be delivered in an operationally useful form as applications embedded in business systems or consulted
The Role of Computers in Synchronous Collaborative Design
The Role of Computers in Synchronous Collaborative Design Wassim M. Jabi, The University of Michigan Theodore W. Hall, Chinese University of Hong Kong Abstract In this paper we discuss the role of computers
Card-Sorting: What You Need to Know about Analyzing and Interpreting Card Sorting Results
October 2008, Vol. 10 Issue 2 Volume 10 Issue 2 Past Issues A-Z List Usability News is a free web newsletter that is produced by the Software Usability Research Laboratory (SURL) at Wichita State University.
Expert System and Knowledge Management for Software Developer in Software Companies
Expert System and Knowledge Management for Software Developer in Software Companies 1 M.S.Josephine, 2 V.Jeyabalaraja 1 Dept. of MCA, Dr.MGR University, Chennai. 2 Dept.of MCA, Velammal Engg.College,Chennai.
Checking Access to Protected Members in the Java Virtual Machine
Checking Access to Protected Members in the Java Virtual Machine Alessandro Coglio Kestrel Institute 3260 Hillview Avenue, Palo Alto, CA 94304, USA Ph. +1-650-493-6871 Fax +1-650-424-1807 http://www.kestrel.edu/
Malay A. Dalal Madhav Erraguntla Perakath Benjamin. Knowledge Based Systems, Inc. (KBSI) College Station, TX 77840, U.S.A.
AN INTRODUCTION TO USING PROSIM FOR BUSINESS PROCESS SIMULATION AND ANALYSIS Malay A. Dalal Madhav Erraguntla Perakath Benjamin Knowledge Based Systems, Inc. (KBSI) College Station, TX 77840, U.S.A. ABSTRACT
IAI : Knowledge Representation
IAI : Knowledge Representation John A. Bullinaria, 2005 1. What is Knowledge? 2. What is a Knowledge Representation? 3. Requirements of a Knowledge Representation 4. Practical Aspects of Good Representations
An Overview of Challenges of Component Based Software Engineering
An Overview of Challenges of Component Based Software Engineering Shabeeh Ahmad Siddiqui Sr Lecturer, Al-Ahgaff University, Yemen Abstract Nowadays there is trend of using components in development of
Software Requirements
Software Engineering Software Requirements Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To introduce the concepts of user and system requirements To describe functional and
Questions? Assignment. Techniques for Gathering Requirements. Gathering and Analysing Requirements
Questions? Assignment Why is proper project management important? What is goal of domain analysis? What is the difference between functional and non- functional requirements? Why is it important for requirements
Ontology-Based Semantic Modeling of Safety Management Knowledge
2254 Ontology-Based Semantic Modeling of Safety Management Knowledge Sijie Zhang 1, Frank Boukamp 2 and Jochen Teizer 3 1 Ph.D. Candidate, School of Civil and Environmental Engineering, Georgia Institute
Analysis of the Specifics for a Business Rules Engine Based Projects
Analysis of the Specifics for a Business Rules Engine Based Projects By Dmitri Ilkaev and Dan Meenan Introduction In recent years business rules engines (BRE) have become a key component in almost every
AN INTELLIGENT TUTORING SYSTEM FOR LEARNING DESIGN PATTERNS
AN INTELLIGENT TUTORING SYSTEM FOR LEARNING DESIGN PATTERNS ZORAN JEREMIĆ, VLADAN DEVEDŽIĆ, DRAGAN GAŠEVIĆ FON School of Business Administration, University of Belgrade Jove Ilića 154, POB 52, 11000 Belgrade,
Knowledge-based Approach in Information Systems Life Cycle and Information Systems Architecture
5 th Slovakian-Hungarian Joint Symposium on Applied Machine Intelligence and Informatics January 25-26, 2007 Poprad, Slovakia Knowledge-based Approach in Information Systems Life Cycle and Information
Topic 2: Structure of Knowledge-Based Systems
Engineering (Ingeniería del Conocimiento) Escuela Politécnica Superior, UAM Course 2007-2008 Topic 2: Structure of -Based Systems Contents 2.1 Components according to the Final User 2.2 Components according
Axiomatic design of software systems
Axiomatic design of software systems N.P. Suh (1), S.H. Do Abstract Software is playing an increasingly important role in manufacturing. Many manufacturing firms have problems with software development.
Second Generation Instructional Design (ID2 )
(ID2 ) By M. David Merrill Zhongmin Li Mark K. Jones Utah State University Written September 1989 Published Educational Technology, 1991, 30(1), 7-11 and 30(2), 7-14. Sometime ago the editor of this journal
Component visualization methods for large legacy software in C/C++
Annales Mathematicae et Informaticae 44 (2015) pp. 23 33 http://ami.ektf.hu Component visualization methods for large legacy software in C/C++ Máté Cserép a, Dániel Krupp b a Eötvös Loránd University [email protected]
An Intelligent Assistant for Computer-Aided Design Extended Abstract
From: AAAI Technical Report SS-00-04. Compilation copyright 2000, AAAI (www.aaai.org). All rights reserved. An Intelligent Assistant for Computer-Aided Design Extended Abstract Olivier St-Cyr, Yves Lespérance,
A Methodology for the Development of New Telecommunications Services
A Methodology for the Development of New Telecommunications Services DIONISIS X. ADAMOPOULOS Centre for Communication Systems Research School of Elec. Eng., IT and Mathematics University of Surrey Guildford
KNOWLEDGE-BASED IN MEDICAL DECISION SUPPORT SYSTEM BASED ON SUBJECTIVE INTELLIGENCE
JOURNAL OF MEDICAL INFORMATICS & TECHNOLOGIES Vol. 22/2013, ISSN 1642-6037 medical diagnosis, ontology, subjective intelligence, reasoning, fuzzy rules Hamido FUJITA 1 KNOWLEDGE-BASED IN MEDICAL DECISION
i. Node Y Represented by a block or part. SysML::Block,
OMG SysML Requirements Traceability (informative) This document has been published as OMG document ptc/07-03-09 so it can be referenced by Annex E of the OMG SysML specification. This document describes
Co-Creation of Models and Metamodels for Enterprise. Architecture Projects.
Co-Creation of Models and Metamodels for Enterprise Architecture Projects Paola Gómez [email protected] Hector Florez [email protected] ABSTRACT The linguistic conformance and the ontological
What is Wrong with EMR?
What is Wrong with EMR? James J. Cimino, M.D. Associate Professor, Department of Medical Informatics, Columbia University 161 Fort Washington Avenue, New York, New York 10032 USA Phone: (212) 305-8127
Agenda. Interface Agents. Interface Agents
Agenda Marcelo G. Armentano Problem Overview Interface Agents Probabilistic approach Monitoring user actions Model of the application Model of user intentions Example Summary ISISTAN Research Institute
A Mind Map Based Framework for Automated Software Log File Analysis
2011 International Conference on Software and Computer Applications IPCSIT vol.9 (2011) (2011) IACSIT Press, Singapore A Mind Map Based Framework for Automated Software Log File Analysis Dileepa Jayathilake
WHEN YOU CONSULT A STATISTICIAN... WHAT TO EXPECT
WHEN YOU CONSULT A STATISTICIAN... WHAT TO EXPECT SECTION ON STATISTICAL CONSULTING AMERICAN STATISTICAL ASSOCIATION 2003 When you consult a statistician, you enlist the help of a professional who is particularly
Implementing Network Monitoring Tools
Section 1 Network Systems Engineering Implementing Network Monitoring Tools V.C.Asiwe and P.S.Dowland Network Research Group, University of Plymouth, Plymouth, United Kingdom e-mail: [email protected]
Teaching Object-Oriented Software Design within the Context of Software Frameworks
Teaching Object-Oriented Software Design within the Context of Software Frameworks Zoya Ali, Joseph Bolinger, Michael Herold, Thomas Lynch, Jay Ramanathan, Rajiv Ramnath The Ohio State University, [email protected],
ISCS - A TOOL KIT FOR CONSTRUCTING KNOWLEDGE-BASED SYSTEM CONFIGURATORS
From: AAAI-86 Proceedings. Copyright 1986, AAAI (www.aaai.org). All rights reserved. ISCS - A TOOL KIT FOR CONSTRUCTING KNOWLEDGE-BASED SYSTEM CONFIGURATORS Harry Wu, Hon Wai Chun, Alejandro Mimo Honeywell
Static Analysis and Validation of Composite Behaviors in Composable Behavior Technology
Static Analysis and Validation of Composite Behaviors in Composable Behavior Technology Jackie Zheqing Zhang Bill Hopkinson, Ph.D. 12479 Research Parkway Orlando, FL 32826-3248 407-207-0976 [email protected],
Utilizing Domain-Specific Modelling for Software Testing
Utilizing Domain-Specific Modelling for Software Testing Olli-Pekka Puolitaival, Teemu Kanstrén VTT Technical Research Centre of Finland Oulu, Finland {olli-pekka.puolitaival, teemu.kanstren}@vtt.fi Abstract
I. INTRODUCTION NOESIS ONTOLOGIES SEMANTICS AND ANNOTATION
Noesis: A Semantic Search Engine and Resource Aggregator for Atmospheric Science Sunil Movva, Rahul Ramachandran, Xiang Li, Phani Cherukuri, Sara Graves Information Technology and Systems Center University
A Review of an MVC Framework based Software Development
, pp. 213-220 http://dx.doi.org/10.14257/ijseia.2014.8.10.19 A Review of an MVC Framework based Software Development Ronnie D. Caytiles and Sunguk Lee * Department of Multimedia Engineering, Hannam University
OVERVIEW HIGHLIGHTS. Exsys Corvid Datasheet 1
Easy to build and implement knowledge automation systems bring interactive decision-making expertise to Web sites. Here s proven technology that provides customized, specific recommendations to prospects,
Surveying and evaluating tools for managing processes for software intensive systems
Master Thesis in Software Engineering 30 Credits, Advanced Level Surveying and evaluating tools for managing processes for software intensive systems Anuradha Suryadevara IDT Mälardalen University, ABB
Software Requirements 1
Software Requirements 1 Requirements are descriptions of the services that a software system must provide and the constraints under which it must operate Requirements can range from high-level abstract
How To Develop Software
Software Engineering Prof. N.L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture-4 Overview of Phases (Part - II) We studied the problem definition phase, with which
Software Quality Assurance Plan
For Database Applications Document ID: Version: 2.1a Planning Installation & Acceptance Integration & Test Requirements Definition Design Development 1 / 54 Copyright 2000-2006 Digital Publications LLC.
Automatic vs. Manual Code Analysis
Automatic vs. Manual Code Analysis 2009-11-17 Ari Kesäniemi Senior Security Architect Nixu Oy [email protected] Copyright The Foundation Permission is granted to copy, distribute and/or modify this
To introduce software process models To describe three generic process models and when they may be used
Software Processes Objectives To introduce software process models To describe three generic process models and when they may be used To describe outline process models for requirements engineering, software
Systems Engineering Interfaces: A Model Based Approach
Systems Engineering Interfaces: A Model Based Approach Elyse Fosse, Christopher L. Delp Jet Propulsion Laboratory, California Institute of Technology 4800 Oak Grove Drive Pasadena, CA 91109 [email protected]
Introduction to Service Oriented Architectures (SOA)
Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction
The Workflow Management Coalition Specification Workflow Management Coalition Terminology & Glossary
The Workflow Management Coalition Specification Workflow Management Coalition Terminology & Glossary Workflow The automation of a business process, in whole or part, during which documents, information
Improved Software Testing Using McCabe IQ Coverage Analysis
White Paper Table of Contents Introduction...1 What is Coverage Analysis?...2 The McCabe IQ Approach to Coverage Analysis...3 The Importance of Coverage Analysis...4 Where Coverage Analysis Fits into your
A Framework for Ontology-Based Knowledge Management System
A Framework for Ontology-Based Knowledge Management System Jiangning WU Institute of Systems Engineering, Dalian University of Technology, Dalian, 116024, China E-mail: [email protected] Abstract Knowledge
1.0 INTRODUCTION 1.1 Overview
Guidance document for the writing of standard operating procedures (Taken from United States Environmental Protection Agency Guidance for Preparing Standard Operating Procedures (SOPs) EPA QA/G- 6 [EPA/600/B-
Chapter 7 Application Protocol Reference Architecture
Application Protocol Reference Architecture Chapter 7 Application Protocol Reference Architecture This chapter proposes an alternative reference architecture for application protocols. The proposed reference
A Framework of Model-Driven Web Application Testing
A Framework of Model-Driven Web Application Testing Nuo Li, Qin-qin Ma, Ji Wu, Mao-zhong Jin, Chao Liu Software Engineering Institute, School of Computer Science and Engineering, Beihang University, China
Move to Usability SOA Arquitecture: Undo Process Implementation
Move to Usability SOA Arquitecture: Undo Process Implementation Hernan Merlino, Oscar Dieste, Patricia Pesado, and Ramon Garcia-Martinez Abstract This work is a new stage of an investigation in usability
Software Engineering. Software Processes. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Software Processes Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To introduce software process models To describe three generic process models and when
Algorithm & Flowchart & Pseudo code. Staff Incharge: S.Sasirekha
Algorithm & Flowchart & Pseudo code Staff Incharge: S.Sasirekha Computer Programming and Languages Computers work on a set of instructions called computer program, which clearly specify the ways to carry
Using an Instructional Systems Development Model as a Framework for Research on Scale Up 1
Using an Instructional Systems Development Model as a Framework for Research on Scale Up 1 Michael R. Vitale East Carolina University Nancy R. Romance Florida Atlantic University Abstract This paper presents
Understanding Human Behaviour and Error
Understanding Human Behaviour and Error David Embrey Human Reliability Associates 1, School House, Higher Lane, Dalton, Wigan, Lancashire. WN8 7RP 1. The Skill, Rule and Knowledge Based Classification
Ch.2 Logistics System Engineering.
Part 1 : System Management. Ch.2 Logistics System Engineering. Edited by Dr. Seung Hyun Lee (Ph.D., CPL) IEMS Research Center, E-mail : [email protected] Definition of System. Definition of System An
The Phios Whole Product Solution Methodology
Phios Corporation White Paper The Phios Whole Product Solution Methodology Norm Kashdan Phios Chief Technology Officer 2010 Phios Corporation Page 1 1 Introduction The senior staff at Phios has several
Before starting it is worth considering what we mean by the term project - basically it can be defined as:
Delivering Successful Projects, Tom Moriarty, MDR Consulting This paper outlines the critical requirements of success in managing projects of all types from the definition of a business need to the delivery
Turning Emergency Plans into Executable
Turning Emergency Plans into Executable Artifacts José H. Canós-Cerdá, Juan Sánchez-Díaz, Vicent Orts, Mª Carmen Penadés ISSI-DSIC Universitat Politècnica de València, Spain {jhcanos jsanchez mpenades}@dsic.upv.es
WebSphere Business Monitor
WebSphere Business Monitor Monitor models 2010 IBM Corporation This presentation should provide an overview of monitor models in WebSphere Business Monitor. WBPM_Monitor_MonitorModels.ppt Page 1 of 25
Selbo 2 an Environment for Creating Electronic Content in Software Engineering
BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 9, No 3 Sofia 2009 Selbo 2 an Environment for Creating Electronic Content in Software Engineering Damyan Mitev 1, Stanimir
Reverse Engineering of Relational Databases to Ontologies: An Approach Based on an Analysis of HTML Forms
Reverse Engineering of Relational Databases to Ontologies: An Approach Based on an Analysis of HTML Forms Irina Astrova 1, Bela Stantic 2 1 Tallinn University of Technology, Ehitajate tee 5, 19086 Tallinn,
Software Engineering. Software Development Process Models. Lecturer: Giuseppe Santucci
Software Engineering Software Development Process Models Lecturer: Giuseppe Santucci Summary Modeling the Software Process Generic Software Process Models Waterfall model Process Iteration Incremental
Artificial Intelligence
Artificial Intelligence ICS461 Fall 2010 1 Lecture #12B More Representations Outline Logics Rules Frames Nancy E. Reed [email protected] 2 Representation Agents deal with knowledge (data) Facts (believe
