A Knowledge Scoring Engine (KSE) for Real-Time Knowledge Base Generation Used in Intelligent Tutoring Systems

Size: px
Start display at page:

Download "A Knowledge Scoring Engine (KSE) for Real-Time Knowledge Base Generation Used in Intelligent Tutoring Systems"

Transcription

1 A Knowledge Scoring Engine (KSE) for Real-Time Knowledge Base Generation Used in Intelligent Tutoring Systems Mark T. Jodlowski Mississippi State University Stephanie M. Doane Mississippi State University Abstract This paper provides a detailed account of a tool developed to facilitate the development of individual computational cognitive models to be used in intelligent tutoring systems (ITS). A generic tool that we will call the Knowledge Scoring Engine (KSE) reads eye tracking and human performance data in real-time, parses the data into discrete events, and uses a knowledge inference generator to build and update student knowledge bases. Student knowledge bases are generated by interpreting actions in realtime based on the context in which the actions take place. The knowledge bases generated by KSE are used by ADAPT, a comprehension-based framework construction-integration model of pilot action planning. This paper provides a detailed description of KSE, the current ADAPT architecture, how the ADAPT model interacts with KSE, and the potential for future developments. 1. Introduction The effort required to build knowledge bases when modeling individuals is one of the many challenges of developing computational cognitive models for intelligent tutoring systems (ITS). The effort is even more difficult when knowledge bases are built in real-time while the modeled individual is acting and reacting in a dynamically changing environment (e.g., piloting an aircraft). Such a task is part of an ongoing project in our laboratory, in which our goal is to develop a real-time ITS of instrument flight skills. Current tutors of complex task performance use automated knowledge base tools. For example, PAT (Pittsburgh Urban Math Project Algebra Tutor) generates a student knowledge base by estimating the probability that the student knows a particular rule [1]. The probability that a student has knowledge of a particular rule is based on an examination of a student s action when the student is given a chance to use a specific rule. Future Combat System (FCS) training [2] demonstrates an alternative method. The FCS uses a series of questions and the student provides answers to assess the student s knowledge and tailor the training to the individual. In the examples above, student knowledge acquisition does not occur in real time or in a dynamically changing environment. Adding a realtime component provides another level of complexity. To generate a student knowledge base in real time, access to real-time, time-synchronized performance data is required. These data provide an ITS the capability of generating and continually updating the student model knowledge base. Our tool generates and updates student knowledge bases by interpreting actions in real time based on the context in which the actions take place. Actions are defined as pilot control and eye movements during simulated flight maneuvers. This type of knowledge base generation is sensitive to dynamically changing environments. For example, in the aviation domain, the context in which a student performs an action is crucial to determining the implication of that action for the student model. In addition, even while the student is performing the action, the environment is changing and the implication of the student s next action is affected by the changing context. Accurate knowledge base generation and continual updating is critical to the success of our project. The overall goal is to demonstrate how an integrative comprehension-based cognitive architecture s learning mechanisms act as a student model of real-time complex task performance in a dynamic task environment. Additionally, the project involves an effort to improve the training of real-time dynamic task performance. To accomplish these goals, we need to develop tools that will not only help us reach our goals, but will augment modeling efforts in general. The focus of this paper is on a Knowledge Scoring Engine (KSE) developed to generate individual knowledge bases in real-time for /04 $17.00 (C) 2004 IEEE 1

2 computational cognitive models of complex dynamic task performance. In addition, the paper focuses on KSE s integration with ADAPT, a constructionintegration model of cognition. 2. KSE Overview KSE s first task is to time synchronize incoming data (e.g., eye movements, flight maneuvers, and flight situation). This aspect of KSE is most closely tied to the ITS environment. The second task is to parse the continuous flow of data into meaningful discrete event segments (discrete event segments are meaningful units of information provided by the system and user). In our case, an event is a user action (either eye movements or control movements) combined with the current flight situation data. The current flight situation data (e.g., airspeed, heading, and altitude) provide contextual information about the environment in which the user performs the action. Tools that classify data into events are not new, and many are capable of reading and parsing real-time data. These tools look for numerical changes in the input data and parse the data according to the detected changes. Similar to other tools, KSE contains a parser that breaks the incoming data into discrete events. However, the next process is unique to KSE, which was developed as a general tool that makes inferences based on the parsed discrete event data. The inferred knowledge is added to an individual s knowledge base as a function of the parsed discrete events. That is, in our parser, events are always interpreted as a function of the context in which they occur. In addition, the inferences regarding knowledge can only be drawn in conjunction with the environmental context. What follows is a detailed description of KSE and ADAPT. After describing both components, an integrated working example of KSE and ADAPT will be discussed. 3. Knowledge Scoring Engine KSE is a generic tool that can be easily modified and used by any experimenters who design their computational models using LISP. Although our implementation of KSE is focused on creating declarative and procedural knowledge bases for ADAPT [3], a construction-integration model, the system could be adapted readily to other architectures, such as ACT-R. As can be seen in Figure 1, KSE consists of two components and a resulting knowledge base. The first component is a parser that translates incoming real-time data. The second component is a knowledge inference generator based on predefined Figure 1. Flow of data into the Knowledge Scoring Engine and out to an individual knowledge base. condition action rules provided by the experimenter. The knowledge inference generator creates and updates an individual s knowledge base. Each of these components will be discussed in the following sections Parser The parser is designed to examine the incoming flow of both static and real-time data, which can enter KSE from many sources. Some examples of incoming data are eye movements captured by an oculometer, flight stick controls, and performance data provided by a flight simulator. As the real-time data enters KSE, it is parsed into predefined discrete event segments, defined as the combination of the user action data and environmental data entering the system. For example, if eye-tracking data are collected while an individual is flying a flight simulator, the combination of the oculometer data and the current flight situation (e.g., airspeed, heading, and altitude) would be a discrete event (see Figure 2). The control movement data combined with the current flight situation would be considered a separate discrete event. The discrete events are then stored in a time-sensitive buffer. The current parser requires the experimenter to hard code combinations of elements (e.g., eye fixation combined with current flight situation) to allow KSE to identify events. In other words, the number of events that can occur is infinite, but constrained by the predefined elements. KSE is currently coded to identify three element combinations: pilot flight performance, actions, and eye movements. Although it was designed specifically for interacting with a flight /04 $17.00 (C) 2004 IEEE 2

3 Figure 2. Sample discrete event (combination of flight simulator and eye movement) data. simulator, the parser is generic enough to adapt easily to other types of environments (e.g., driving simulators) Knowledge Inference Generator The knowledge inference generator is a KSE component that creates and continually updates individual knowledge bases. An individual s knowledge base is determined by checking events against experimenter-defined condition action rules written in LISP. An example of a condition action rule for oculometer and flight simulator data would be: IF the goal is to decrease airspeed And the pilot looks at the airspeed indicator And the pilot pulls back the throttle THEN update the pilot s knowledge base to indicate that the pilot knows that decreasing the throttle decreases airspeed. Taken together, the predefined condition action rules and discrete events stored in the time-sensitive buffer generate and update an individual s knowledge base while the individual is performing the task. The process continues as long as data continue to enter KSE. To summarize, the discrete events are compared to the knowledge inference rules that reside in the knowledge inference generator. If a discrete event matches a rule in the knowledge inference generator, the associated knowledge updates the individual s knowledge base Tutoring Instrument Flight Skills As noted previously, KSE was developed to help transform a cognitive theory-driven constructionintegration model of pilot action planning during simulated flight (ADAPT) into a real-time intelligent tool for tutoring instrument flight skills. Given access to real-time control movement, eye movement, and flight situation data, the model uses KSE to build and continually update an individual s knowledge base. Given the individual s knowledge base, the ADAPT model has been shown to be capable of predicting individual novice, intermediate, and expert pilot eye fixations and control movements during simulated flight [3]. In addition, ADAPT has learning mechanisms to acquire both procedural and declarative knowledge. These mechanisms have recently been found to be capable of predicting individual student learning from a computer-based tutor for computer command skills [4]. We will now provide a history of the ADAPT architecture, the current ADAPT architecture, and how ADAPT uses KSE to generate a pilot s knowledge base. 4. ADAPT ADAPT is a comprehension-based framework construction-integration model of pilot action planning. We will now describe the constructionintegration theory and architecture of ADAPT /04 $17.00 (C) 2004 IEEE 3

4 Figure 3. ADAPT construction-integration model Construction-Integration Theory ADAPT is based on the premise that comprehension-based mechanisms identical to ones used to understand a list of words, narrative prose, and algebraic word problems constrain problem-solving episodes as well. ADAPT rests on Kintsch s [5, 6] construction-integration theory of comprehension. Specifically, Kintsch s theory presumes that low-level associations between incoming contextual information (e.g., task instructions) and background knowledge (e.g., domain knowledge) are constructed and used to constrain knowledge activation via a constraint-based integration process. The resulting pattern of contextsensitive knowledge activations is referred to as a situation model and represents the current state of comprehension. The construction-integration model [5] was initially developed to explain certain phenomena of text comprehension, such as word sense disambiguation. The model describes how we use contextual information to assign a single meaning to words with multiple meanings. For example, the appropriate assignment of meaning for the word bank is different in the context of conversations about paychecks (money bank ) and about swimming (river bank). In Kintsch s view, this can be explained by representing memory as an associative network in which the nodes contain propositional representations of knowledge about the current context or task: general (context-independent) declarative facts, and If/Then rules that represent possible plans of action [7]. The declarative facts and plan knowledge are similar to the declarative and procedural knowledge contained in ACT-R [8]. When the model simulates comprehension in the context of a specific task (e.g., reading a paragraph for a later memory test), a set of weak symbolic production rules construct an associative network of knowledge interrelated by superficial similarities between propositional representations of knowledge without regard to task context. This associated knowledge network is then integrated via a constraintsatisfaction algorithm that propagates activation throughout the network, strengthening connections between items relevant to the current task context and inhibiting or weakening connections between irrelevant items. This integration phase results in context-sensitive knowledge activation constrained by inter-item overlap and current task relevance. Kintsch s theory in particular has been used to explain a wide variety of behavioral phenomena, including narrative story comprehension [5], algebra story problem comprehension [5], the solution of simple computing tasks [7], and completing the Tower of Hanoi task [9]. This approach has also proved fruitful for understanding human-computer interaction skills [e.g., 10, 11, 12], predicting the impact of instructions on computer-user performance [13, 14], and predicting novice and expert pilot action planning [3] ADAPT Architecture Figure 3 displays the current architecture of ADAPT. The flow of cognition in the system is in response to the current goal and current state of the world (perceived environment), currently active information in declarative and plan element /04 $17.00 (C) 2004 IEEE 4

5 knowledge, information attended to in perceptual models (visual and auditory), and the current state of the motor modules (hand and speech). Initially, in response to the constructed state of all of these modules, knowledge and action are integrated and a plan element is selected and executed. This plan element can cause changes in the current goal, make retrieval requests of declarative memory, shift attention, or call for new motor actions. The action modules can cause changes in the simulated environment (flight simulator that uses algorithms to update the state of the aircraft (e.g., heading, airspeed, altitude) in response to actions and to the passage of time). The environmental changes are perceived by the perceptual modules. ADAPT follows the lead of Anderson [14] and uses a serial bottleneck theory of cognition in which parallel cognitive, perceptual, and motor modules must interact through a serial process of plan element selection and execution. ADAPT currently performs actions, looks-at displays, and moves flight controls, but it does not possess a perceptual motor model as sophisticated as that in EPIC [16]. ADAPT represents the three major classes of knowledge proposed by Kintsch [5]: world knowledge, general knowledge (e.g., declarative facts), and plan element knowledge (e.g., procedural knowledge represented as If/Then rules). Table I shows examples of each class of knowledge along with the abbreviated propositional representation in ADAPT. Each of the three types of knowledge is discussed below World Knowledge. The first class of knowledge represents the modeled pilot s current state of the world. Examples of world knowledge in ADAPT include the pilot s knowledge of the current and desired states of the airplane, determined relationships between the current and desired states (e.g., altitude is higher than desired value), and flight segment goals. Airplane status is represented as the current values, rates of change, and direction of change of each flight axis. Current values represent the current status of the airplane shown on display instruments (e.g., 3000 ft); direction of change represents increase, decrease, or holding axis status; and rate of change represents the speed of change to an axis (e.g., 500 ft per minute). These facts are contextually sensitive and fluid, changing as the modeled task and simulated performance progresses through a flight maneuver. If the ADAPT pilot detects a change in the state of the airplane, then plane status is updated, and the relationships between current and desired plane states recalculated. In addition, if the ADAPT pilot receives new flight goals, then goals are updated in the modeled pilot world knowledge. It is noteworthy that ADAPT constrains the number of propositions that can be retained in world knowledge to model working memory limitations crudely. Working memory capacity limitations are modeled by limiting the number of propositions retained in world knowledge from cycle to cycle using a predetermined capacity threshold. Decay limitations are modeled by limiting the length of time (modeled as cycles ) a given in-the-world proposition can be retained in memory using a predetermined decay threshold General Knowledge. General knowledge refers to factual (declarative) knowledge about piloting (see Table I). In ADAPT, general knowledge represents facts about the relationships between control inputs and plane performance, and knowledge of flight dynamics, display instruments, and control movements Plan Elements. Plan elements represents executable (procedural) knowledge about piloting. Plan elements describe actions that can be taken inthe-world, and they specify conditions under which actions can be taken. Thus, pilots have conditionaction rules that they can consider and execute if conditions are correct. Plan elements are three-part knowledge structures that include a name, preconditions in-the-world or general knowledge that must be satisfied in order for the plan to fire, and outcomes that are added to world knowledge if the plan is executed (see Table I). For example, as shown in Table I, a plan element that decreases airspeed requires that the pilot know that the desired airspeed is less than the current airspeed, that power controls airspeed, that the tachometer indicates power, and that pulling back the throttle decreases power. When the decrease plan element is fired, its outcome propositions are added to the world knowledge to represent the current need to look at the tachometer and to pull back the throttle. 5. KSE and ADAPT Given the knowledge intensive nature of the ADAPT model, it is clear that a tool to simplify knowledge acquisition would facilitate its use. One of our main goals is to generate and update an individual s knowledge base real time in a complex dynamically changing environment. ADAPT uses KSE to generate and update the knowledge base of each individual pilot (see Figure 4). The knowledge /04 $17.00 (C) 2004 IEEE 5

6 Table I. Examples of knowledge and their formal representations in the ADAPT model. Type of Knowledge Abbreviated Propositional Representation World Knowledge Desired airspeed is 90 kts Current airspeed is 100 kts Desired airspeed is much less than current airspeed A task is to check airspeed General Knowledge Control-performance relationship Power controls airspeed Flight dynamics Pitch up causes airspeed decrease Primary-supporting display VSI supports altimeter Display instrument Airspeed indicator indicates airspeed Control movement Pulling back throttle decreases power Plan Knowledge Name: Decrease airspeed Preconditions: Desired airspeed is less than current airspeed Airspeed indicator indicates airspeed Power controls airspeed Pulling back throttle decreases power Outcome(s): Need to look at airspeed indicator Need to pull back throttle base is generated as the knowledge inference generator acts on the discrete events identified in an individual s performance. Recall that the discrete events are combinations of eye fixations or control movements in the context of the flight situation. The knowledge engine contains the predefined rules for declarative knowledge and plan elements. As discrete events enter the buffer, the inference generator reads the discrete events and matches them to the declarative knowledge and plan element knowledge stored in the inference generator. If the discrete event matches a rule stored in the inference generator, then the knowledge is inferred and added to the pilot s knowledge base. Before describing in detail an example of ADAPT s use of KSE, it may be helpful to review the data flow in Figure 1. The example described will follow in serial order the flow of data from start to finish. Imagine a scenario in which the pilot knows he/she needs to decrease the airspeed of the plane and maintain both a constant heading and altitude. For individuals not familiar with aviation, the change (Know airspeed^desired=90) (Know airspeed^current=100) (Know much^lt-airspeed^desired-airspeed^current) (Task check airspeed) (Know power control airspeed) (Know pitch up airspeed decrease) (Know VSI support altimeter) (Know airspeed^indicator indicate airspeed) (Know pull^back throttle decrease power) (Do decrease airspeed) (Know lt-airspeed^desired-airspeed^current) (Know airspeed^indicator indicates airspeed) (Know power control airspeed) (Know pull^back throttle decrease power) (Need airspeed^indicator) (Need pull^back throttle) required to reach the goal is simply to slow down. The current flight situation indicates that the plane is traveling at 90 knots (airspeed), flying at 3000 feet (altitude), and has a heading of 270 (West). If the pilot fixates on the tachometer (the instrument indicating the engine RPMs), the real-time data that enter KSE are the flight situation data and the pilot s fixation. Fixation on the tachometer is one of the predefined events in KSE. The combination of the flight situation data (airspeed, altitude, and heading) and the fixation data are parsed into a discrete event. This event is then entered into the time-dependent buffer. The knowledge inference generator acts on the event in the buffer and tries to match the data stored in the buffer with rules stored in the knowledge inference generator. Meanwhile, the pilot has performed two actions (started decreasing the throttle and stopped his/her adjustment) and is now fixating on the airspeed indicator. Three more discrete events are added to the buffer: decreasing the power (using the throttle) combined with the current flight situation data; /04 $17.00 (C) 2004 IEEE 6

7 Figure 4. Integration of the Knowledge Scoring Engine and ADAPT intelligent tutoring system. stopping the control movement (no longer decreasing the throttle); and fixating on the airspeed indicator, as always combined with the current flight data. The compilation of events stored in the buffer now matches one of the predefined rules in the knowledge inference generator. IF the goal is to decrease airspeed AND the throttle is pulled back AND there is a fixation on the airspeed indicator THEN infer that the pilot knows that decreasing the throttle decreases the airspeed The individual pilot knowledge base is then updated with the new knowledge (propositional representation of the student). Updating the knowledge base continues as data continue to enter KSE. This allows the system to not only identify prior knowledge but also to identify knowledge learned by the student while interacting with the ITS. ADAPT can then use the new knowledge in the construction and integration phases Time Savings Before the development of KSE, it took approximately 2 hours to hand score an individual student knowledge base using performance data from seven, 6-second windows (42 seconds) of simulated instrument flight (for a complete description of the performance data windows see [3]). There is a significant timesaving benefit when using KSE. Because KSE functions in real-time, KSE can generate the same knowledge base in 42 seconds. When KSE runs in an off-line environment, each 6-second window of performance data takes less than a second to process Validation One method of validating cognitive models is to compare modeled and student performance. In a previous study [3], using hand-scoring and 42 seconds of performance data to generate a knowledge base, the ADAPT model matched approximately 80% of pilot behavior. We have performed a preliminary validation of ADAPT using KSE rather than hand scoring of knowledge bases. Using a small sample size (N = 4) and approximately 42 seconds of performance data, the match between modeled and student performance ranged from 72 90%. These preliminary results are consistent with the match obtained using hand scoring, which suggests that KSE is just as accurate as hand scoring. Furthermore, it appears that KSE is more sensitive to the identification of pilot knowledge; i.e., KSE is more likely to identify all pilot knowledge for a given window of data. Future work involves identifying the appropriate sensitivity level for KSE /04 $17.00 (C) 2004 IEEE 7

8 6. General Discussion There are many possible benefits to using KSE. Perhaps the most important advantage is its ability to generate and continually update individual knowledge bases for a complex dynamic task in real time. This capability provides a necessary component for intelligent tutoring systems designed to model individual students. Although KSE was developed to work in real time, it is also able to generate knowledge bases from saved data files. The data files can be read as input files, and KSE will generate an individual knowledge base reflecting the data provided to it. The generic nature of the rule interpretation allows an experimenter to input rules into the knowledge inference generator and quickly assess student knowledge. The experimenter does not have to manually examine the parsed data and generate knowledge bases for each subject. Another benefit of KSE is that it was designed to be a generic tool that can be used in any type of environment that uses LISP. As with any tool, there are restrictions, however. In KSE, the primary restriction is the necessity of developing an interface between the tutoring environment and the timesensitive event buffer. In our current application, the identification of events is closely tied to the contents of our real-time data. A second restriction is the requirement that the experimenter code the condition action rules that infer knowledge from actions in a LISP interpretable format. However, in the future, we hope to develop a friendly interface that can be used for entering rules. As previously mentioned, KSE was developed to parse oculometer, flight simulator, and control movement data and to generate individual knowledge bases for piloting an aircraft. The type of events KSE parses can be modified using LISP. In addition, the knowledge inference rules can be defined in LISP as well. Future development of KSE will provide a userfriendly interface to define events and specific knowledge inference rules. Overall, we feel that KSE shows promise as a tool for use in computational modeling and that KSE is capable of supporting the critical goal of developing situation specific models [17]. KSE allows knowledge bases for complex and dynamically changing tasks to be generated and updated both quickly and accurately based on contextually sensitive experimenter-defined rules. In addition, there is no reason KSE cannot be adapted for various types of data in multiple domains and for various cognitive modeling architectures. 7. References [1] Corbett, A.T., K.R. Keodinger, and J.R. Anderson, Handbook of Human Computer Interaction (2 nd ed.), Elsevier Science, Amsterdam, [2] G.M. Burmester, D. Stottler, and J.L. Hart, Embedded Training Intelligent Tutoring Systems (ITS) for the Future Combat Systems (FCS) Command and Control (C2) Vehicle. Proceedings of the Industry/Interservice, Training, Simulation & Education Conference, National Academies Press, Washington DC, [3] S.M. Doane and Y.W. Sohn, ADAPT: A Predictive Cognitive Model of User Visual Attention and Action Planning, User Modeling and User Adapted Interaction, 10, Kluwer Academic, Dordrecht, Netherlands, 2000, pp [4] Y.W. Sohn, and S.M. Doane, Evaluating Comprehension-Based User Models: Predicting Individual User Planning and Action, User Modeling and User- Adapted Interaction, 12, Kluwer Academic, Dordrecht, Netherlands, 2002, pp [5] W. Kintsch, The Use of Knowledge in Discourse Processing: A Construction-Integration Model, Psychological Review, 95, American Psychological Association, Washington, DC, 1988, pp [6] Kintsch W., Comprehension: A Paradigm for Cognition, Cambridge University Press, Cambridge, MA, [7] S.M. Mannes, and W. Kintsch, Routine Computing Tasks; Planning as Understanding, Cognitive Science, 15(3), Elsevier Science, Amsterdam, 1991, pp [8] Anderson, J.R., Rules of the Mind, Erlbaum, Hillsdale, NJ, [9] F. Schmalhofer, and B. Tschaitschian, The Acquisition of a Procedure Schema from Text and Experiences. Proceedings of the 15th Annual Conference of the Cognitive Science Society, Erlbaum, Hillsdale, NJ, 1993, pp [10] S.M. Doane, D.S. McNamara, W. Kintsch, P.G. Polson, and D. Clawson, Prompt Comprehension in UNIX Command Production, Memory and Cognition, 20(4), Psychonomic Society, Austin, TX, 1992, pp [11] M. Kitajima, and P.G. Polson, A Comprehension- Based Model of Correct Performance and Errors in Skilled, Display-Based, Human-Computer Interaction, International Journal of Human-Computer Studies, 43, Elsevier Science, Amsterdam, 1995, pp /04 $17.00 (C) 2004 IEEE 8

9 [12] S.M. Mannes, and S.M. Doane, A Hybrid Model of Script Generation: Or Getting the Best of Both Worlds, Connection Science, 3(1), Taylor and Francis Group, Philadelphia, PA, 1991 pp [13] S.M. Doane, Y.W. Sohn, D.S. McNamara, and D. Adams, Comprehension-Based Skill Acquisition, Cognitive Science, 24, Elsevier Science, Amsterdam, 2000, pp [14] Y.W. Sohn, and S.M. Doane, Cognitive Constraints on Computer Problem Solving Skills, Journal of Experimental Psychology: Applied, 3, American Psychological Association, Washington, DC, 1997, pp [15] Anderson, J.R., and C. Lebiere, The Atomic Components of Thought, Erlbaum, Mahwah, NJ, [16] D.E. Meyer, and D.E. Kieras, A Computational Theory of Executive Cognitive Processes and Multiple-Task Performance: Part 1. Basic Mechanisms, Psychological Review, 104, American Psychological Association, Washington, DC, 1997, pp [17] Pew, R.W., and A.S. Mavor, Modeling Human and Organizational Behavior: Application to Military Simulations. National Academy Press, Washington D.C, Acknowledgments This research was supported by a grant from the Office of Naval Research #N The authors wish to thank Dr. Susan Chipman for her support of this effort /04 $17.00 (C) 2004 IEEE 9

Levels of Analysis and ACT-R

Levels of Analysis and ACT-R 1 Levels of Analysis and ACT-R LaLoCo, Fall 2013 Adrian Brasoveanu, Karl DeVries [based on slides by Sharon Goldwater & Frank Keller] 2 David Marr: levels of analysis Background Levels of Analysis John

More information

MODELING AND PREDICTION OF HUMAN DRIVER BEHAVIOR

MODELING AND PREDICTION OF HUMAN DRIVER BEHAVIOR MODELING AND PREDICTION OF HUMAN DRIVER BEHAVIOR Andrew Liu and Dario Salvucci* MIT Man Vehicle Laboratory, Rm 37-219, 77 Massachusetts Ave., Cambridge, MA 02139 *Nissan Cambridge Basic Research, 4 Cambridge

More information

An Individualized Web-based Algebra Tutor Based on Dynamic Deep Model Tracing

An Individualized Web-based Algebra Tutor Based on Dynamic Deep Model Tracing An Individualized Web-based Algebra Tutor Based on Dynamic Deep Model Tracing Dimitrios Sklavakis 1 and Ioannis Refanidis 1 1 University of Macedonia, Department of Applied Informatics, Egnatia 156, P.O.

More information

An activity-based analysis of hands-on practice methods

An activity-based analysis of hands-on practice methods Journal of Computer Assisted Learning (2000) 16, 358-365 An activity-based analysis of hands-on practice methods S. Wiedenbeck, J.A. Zavala & J. Nawyn University of Nebraska Abstract The success of exploration-based

More information

Intelligent Tutoring Systems: Using AI to Improve Training Performance and ROI

Intelligent Tutoring Systems: Using AI to Improve Training Performance and ROI Intelligent Tutoring Systems: Using AI to Improve Training Performance and ROI By James Ong and Sowmya Ramachandran Learning may ultimately be its own reward, but many companies recognized long ago that

More information

Keywords: Cognitive Model; Synthetic Task Environment; Reconnaissance; Flight Simulation; ACT-R; UAV

Keywords: Cognitive Model; Synthetic Task Environment; Reconnaissance; Flight Simulation; ACT-R; UAV Dimperio, E., Gunzelmann, G., & Harris, J. (2008). An Initial Evaluation of a Cognitive Model of UAV Reconnaissance. In J. Hansberger (Ed.), Proceedings of the Seventeenth Conference on Behavior Representation

More information

www.projectlearnet.org WHAT IS COGNITIVE INTERVENTION/REHABILITATION?

www.projectlearnet.org WHAT IS COGNITIVE INTERVENTION/REHABILITATION? Tutorial: Cognitive Intervention/Rehabilitation (See Tutorials on Cognition; Transfer/Generalization; Instructional Routines; Attention; Memory and Memory Problems; Organization; Problem Solving; Concrete

More information

Applied Psychology. Dr. Marya Howell-Carter, Acting Chair Psychology Dept. Bachelor of Science Degree

Applied Psychology. Dr. Marya Howell-Carter, Acting Chair Psychology Dept. Bachelor of Science Degree Applied Psychology Dr. Marya Howell-Carter, Acting Chair Psychology Dept. Bachelor of Science Degree The Applied Psychology program leads to a Bachelor of Science degree with a concentration in Industrial/Organizational

More information

A Cognitive Approach to Vision for a Mobile Robot

A Cognitive Approach to Vision for a Mobile Robot A Cognitive Approach to Vision for a Mobile Robot D. Paul Benjamin Christopher Funk Pace University, 1 Pace Plaza, New York, New York 10038, 212-346-1012 benjamin@pace.edu Damian Lyons Fordham University,

More information

MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL

MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL G. Maria Priscilla 1 and C. P. Sumathi 2 1 S.N.R. Sons College (Autonomous), Coimbatore, India 2 SDNB Vaishnav College

More information

ACT-R: A cognitive architecture. Terese Liadal liadal@stud.ntnu.no Seminar AI Tools Universität des Saarlandes, Wintersemester 06/07

ACT-R: A cognitive architecture. Terese Liadal liadal@stud.ntnu.no Seminar AI Tools Universität des Saarlandes, Wintersemester 06/07 ACT-R: A cognitive architecture Terese Liadal liadal@stud.ntnu.no Seminar AI Tools Universität des Saarlandes, Wintersemester 06/07 Dozenten: A. Ndiaye, M. Kipp, D. Heckmann, M. Feld 1 If the brain were

More information

Integrating Cognitive Models Based on Different Computational Methods

Integrating Cognitive Models Based on Different Computational Methods Integrating Cognitive Models Based on Different Computational Methods Nicholas L. Cassimatis (cassin@rpi.edu) Rensselaer Polytechnic Institute Department of Cognitive Science 110 8 th Street Troy, NY 12180

More information

NATURAL LANGUAGE QUERY PROCESSING USING PROBABILISTIC CONTEXT FREE GRAMMAR

NATURAL LANGUAGE QUERY PROCESSING USING PROBABILISTIC CONTEXT FREE GRAMMAR NATURAL LANGUAGE QUERY PROCESSING USING PROBABILISTIC CONTEXT FREE GRAMMAR Arati K. Deshpande 1 and Prakash. R. Devale 2 1 Student and 2 Professor & Head, Department of Information Technology, Bharati

More information

Testing the Revised Moving Target Tutor

Testing the Revised Moving Target Tutor COLLEGE OF INFORMATION SCIENCES AND TECHNOLOGY THE PENNSYLVANIA STATE UNIVERSITY Testing the Revised Moving Target Tutor (evaluation of D2P/MTT 11/27/2012) Kuo-Chuan (Martin) Yeh, Frank E. Ritter, and

More information

Aids to computer-based multimedia learning

Aids to computer-based multimedia learning Learning and Instruction 12 (2002) 107 119 www.elsevier.com/locate/learninstruc Aids to computer-based multimedia learning Richard E. Mayer *, Roxana Moreno Department of Psychology, University of California,

More information

Position Classification Flysheet for Computer Science Series, GS-1550. Table of Contents

Position Classification Flysheet for Computer Science Series, GS-1550. Table of Contents Position Classification Flysheet for Computer Science Series, GS-1550 Table of Contents SERIES DEFINITION... 2 OCCUPATIONAL INFORMATION... 2 EXCLUSIONS... 4 AUTHORIZED TITLES... 5 GRADE LEVEL CRITERIA...

More information

REFLECTIONS ON LEARNING THEORIES IN INSTRUCTIONAL DESIGN 1

REFLECTIONS ON LEARNING THEORIES IN INSTRUCTIONAL DESIGN 1 REFLECTIONS ON LEARNING THEORIES IN INSTRUCTIONAL DESIGN 1 Reflections on the Learning Theories in the Instructional Design Process for the Utah Valley University Digital Media Portfolio Review Acceptance

More information

COGNITIVE PSYCHOLOGY

COGNITIVE PSYCHOLOGY COGNITIVE PSYCHOLOGY ROBERT J. STERNBERG Yale University HARCOURT BRACE COLLEGE PUBLISHERS Fort Worth Philadelphia San Diego New York Orlando Austin San Antonio Toronto Montreal London Sydney Tokyo Contents

More information

Areas of Processing Deficit and Their Link to Areas of Academic Achievement

Areas of Processing Deficit and Their Link to Areas of Academic Achievement Areas of Processing Deficit and Their Link to Areas of Academic Achievement Phonological Processing Model Wagner, R.K., Torgesen, J.K., & Rashotte, C.A. (1999). Comprehensive Test of Phonological Processing.

More information

DYNAMIC STUDENT MODELLING IN AN INTELLIGENT TUTOR FOR LISP PROGRAMMING. Brian J. Reiser John R. Anderson Robert G. Farrell

DYNAMIC STUDENT MODELLING IN AN INTELLIGENT TUTOR FOR LISP PROGRAMMING. Brian J. Reiser John R. Anderson Robert G. Farrell DYNAMIC STUDENT MODELLING IN AN INTELLIGENT TUTOR FOR LISP PROGRAMMING Brian J. Reiser John R. Anderson Robert G. Farrell Advanced Computer Tutoring Project Carnegie-Mellon University Pittsburgh, PA 15213

More information

The Impact of Aging on Access to Technology

The Impact of Aging on Access to Technology The Impact of Aging on Access to Technology Sara J. Czaja Department of Psychiatry and Behavior Sciences Center on Aging University of Miami Miller School of Medicine Introduction Two major demographic

More information

Predicting the Effects of Cell-Phone Dialing on Driver Performance

Predicting the Effects of Cell-Phone Dialing on Driver Performance Predicting the Effects of Cell-Phone Dialing on Driver Performance Dario D. Salvucci (dario@cbr.com) Kristen L. Macuga (kristen@cbr.com) Nissan Cambridge Basic Research, Four Cambridge Center Cambridge,

More information

the cross-cutting edge

the cross-cutting edge the cross-cutting edge Applying the science of learning to medical education Richard E Mayer OBJECTIVE The goal of this paper is to examine how to apply the science of learning to medical education. SCIENCE

More information

TEXT-FILLED STACKED AREA GRAPHS Martin Kraus

TEXT-FILLED STACKED AREA GRAPHS Martin Kraus Martin Kraus Text can add a significant amount of detail and value to an information visualization. In particular, it can integrate more of the data that a visualization is based on, and it can also integrate

More information

Frequency, definition Modifiability, existence of multiple operations & strategies

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

More information

An Integrated Model of Set Shifting and Maintenance

An Integrated Model of Set Shifting and Maintenance An Integrated Model of Set Shifting and Maintenance Erik M. Altmann (altmann@gmu.edu) Wayne D. Gray (gray@gmu.edu) Human Factors & Applied Cognition George Mason University Fairfax, VA 22030 Abstract Serial

More information

Safety Verification of the Small Aircraft Transportation System Concept of Operations

Safety Verification of the Small Aircraft Transportation System Concept of Operations Safety Verification of the Small Aircraft Transportation System Concept of Operations Victor Carreño 1 NASA Langley Research Center, Hampton, Virginia, 23681 César Muñoz 2 National Institute of Aerospace,

More information

2014 NIFA CRM Contestant Briefing Guide San Diego, California

2014 NIFA CRM Contestant Briefing Guide San Diego, California 2014 NIFA CRM Contestant Briefing Guide San Diego, California Region 2 SAFECON 2014 November 12 15 This document supports the 2014 NIFA Collegiate Cockpit Resource Management Simulation and is not for

More information

Cognitive Mastery in APT - An Evaluation

Cognitive Mastery in APT - An Evaluation From: AAAI Technical Report SS-00-01. Compilation copyright 2000, AAAI (www.aaai.org). All rights reserved. Cognitive Mastery Learning in the ACT Programming Tutor Albert Corbett Human-Computer Interaction

More information

Cognitive Models & User Interfaces

Cognitive Models & User Interfaces Embodied Models as Simulated Users: Introduction to this Special Issue on Using Cognitive Models to Improve Interface Design Frank E. Ritter a and Richard M. Young b a School of Information Sciences and

More information

DEBORAH MARIE CLAWSON

DEBORAH MARIE CLAWSON CURRICULUM VITAE DEBORAH MARIE CLAWSON Department of Psychology (202) 319-5528 Catholic University of America clawson@cua.edu Washington, DC 20064 http://faculty.cua.edu/clawson EDUCATION B. A. in Computer

More information

Human-Centered Public Transportation Systems for Persons with Cognitive Disabilities. Challenges and Insights for Participatory Design

Human-Centered Public Transportation Systems for Persons with Cognitive Disabilities. Challenges and Insights for Participatory Design Human-Centered Public Transportation Systems for Persons with Cognitive Disabilities Challenges and Insights for Participatory Design Gerhard Fischer and James F. Sullivan, Jr. Center for LifeLong Learning

More information

Establishing Conditions for Learning From Online Training Curricula. Dr. Richard H. Vranesh. For Presentation at Virtual Educa 2003

Establishing Conditions for Learning From Online Training Curricula. Dr. Richard H. Vranesh. For Presentation at Virtual Educa 2003 Establishing Conditions for Learning From Online Training Curricula By Dr. Richard H. Vranesh For Presentation at Virtual Educa 2003 Affiliated Computer Systems May 2003 1 Abstract Purpose For traditional

More information

Reusable Knowledge-based Components for Building Software. Applications: A Knowledge Modelling Approach

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

More information

A Client-Server Interactive Tool for Integrated Artificial Intelligence Curriculum

A Client-Server Interactive Tool for Integrated Artificial Intelligence Curriculum A Client-Server Interactive Tool for Integrated Artificial Intelligence Curriculum Diane J. Cook and Lawrence B. Holder Department of Computer Science and Engineering Box 19015 University of Texas at Arlington

More information

Technology to Control Hybrid Computer Systems

Technology to Control Hybrid Computer Systems INFORMATION TECHNOLOGY Hynomics (formerly HyBrithms Corporation, formerly Sagent Corporation) Technology to Control Hybrid Computer Systems Businesses and industries, both large and small, increasingly

More information

SHARED MENTAL MODELS AND COORDINATION IN LARGE-SCALE, DISTRIBUTED SOFTWARE DEVELOPMENT

SHARED MENTAL MODELS AND COORDINATION IN LARGE-SCALE, DISTRIBUTED SOFTWARE DEVELOPMENT SHARED MENTAL MODELS AND COORDINATION IN LARGE-SCALE, DISTRIBUTED SOFTWARE DEVELOPMENT J. Alberto Espinosa Javier F. Lerch James D. Herbsleb Lucent Technologies Robert E. Kraut Sandra A. Slaughter Audris

More information

The Dramatic Effects of Pitot-Static System Blockages and Failures. References... 51

The Dramatic Effects of Pitot-Static System Blockages and Failures. References... 51 The Dramatic Effects of Pitot-Static System Blockages and Failures by Luiz Roberto Monteiro de Oliveira. Table of Contents I II III IV V VI Introduction.1 Pitot Static Instruments..3 Blockage Scenarios

More information

Vita Kenneth Kotovsky

Vita Kenneth Kotovsky Vita Kenneth Kotovsky Address: Psychology Department Carnegie Mellon University Pittsburgh, PA 15213. Telephone (412) 268-8110 Email: kotovsky@cmu.edu Professional Employment: Carnegie-Mellon University

More information

Rotorcraft Health Management System (RHMS)

Rotorcraft Health Management System (RHMS) AIAC-11 Eleventh Australian International Aerospace Congress Rotorcraft Health Management System (RHMS) Robab Safa-Bakhsh 1, Dmitry Cherkassky 2 1 The Boeing Company, Phantom Works Philadelphia Center

More information

Constraint-Directed Scheduling for Multi-Storey Building Projects

Constraint-Directed Scheduling for Multi-Storey Building Projects Constraint-Directed Scheduling for Multi-Storey Building Projects Pasit Lorterapong* and Osama Moselhi** ** Department of Civil Engineering, King Mongkut ' s Institute of Technology Thonburi, Pracha u-tid

More information

Static Analysis and Validation of Composite Behaviors in Composable Behavior Technology

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 jackie.z.zhang@saic.com,

More information

A General Framework for Overlay Visualization

A General Framework for Overlay Visualization Replace this file with prentcsmacro.sty for your meeting, or with entcsmacro.sty for your meeting. Both can be found at the ENTCS Macro Home Page. A General Framework for Overlay Visualization Tihomir

More information

The Analysis of Online Communities using Interactive Content-based Social Networks

The Analysis of Online Communities using Interactive Content-based Social Networks The Analysis of Online Communities using Interactive Content-based Social Networks Anatoliy Gruzd Graduate School of Library and Information Science, University of Illinois at Urbana- Champaign, agruzd2@uiuc.edu

More information

How To Compare Real Time Scheduling To A Scheduled Scheduler On Linux On A Computer System With A Visualization System

How To Compare Real Time Scheduling To A Scheduled Scheduler On Linux On A Computer System With A Visualization System MS project proposal: A comparison of real-time scheduling algorithms using visualization of tasks and evaluation of real-time extensions to Linux Kevin Churnetski Computer Science-RIT 8/21/2003 Abstract:

More information

ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS

ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS Harrie Passier and Johan Jeuring Faculty of Computer Science, Open University of the Netherlands Valkenburgerweg 177, 6419 AT Heerlen,

More information

When and Why Does Mastery Learning Work: Instructional Experiments with ACT-R SimStudents

When and Why Does Mastery Learning Work: Instructional Experiments with ACT-R SimStudents When and Why Does Mastery Learning Work: Instructional Experiments with ACT-R SimStudents Benjamin MacLaren and Kenneth Koedinger Carnegie Mellon University, Pittsburgh PA (ben@cs.cmu.edu), (koedinger@cmu.edu)

More information

Integrated System Modeling for Handling Big Data in Electric Utility Systems

Integrated System Modeling for Handling Big Data in Electric Utility Systems Integrated System Modeling for Handling Big Data in Electric Utility Systems Stephanie Hamilton Brookhaven National Laboratory Robert Broadwater EDD dew@edd-us.com 1 Finding Good Solutions for the Hard

More information

Teaching Methodology for 3D Animation

Teaching Methodology for 3D Animation Abstract The field of 3d animation has addressed design processes and work practices in the design disciplines for in recent years. There are good reasons for considering the development of systematic

More information

Abstract Title Page. Authors and Affiliations: Maria Mendiburo The Carnegie Foundation

Abstract Title Page. Authors and Affiliations: Maria Mendiburo The Carnegie Foundation Abstract Title Page Title: Designing Technology to Impact Classroom Practice: How Technology Design for Learning Can Support Both Students and Teachers Authors and Affiliations: Maria Mendiburo The Carnegie

More information

An Online Resource for the Design of Instructional Videos and Animations

An Online Resource for the Design of Instructional Videos and Animations Appendix 6 Hatsidimitris, G. & Allen, B. (2010). In Proceedings of World Conference on E Learning in Corporate, Government, Healthcare, and Higher Education 2010 (pp. 1024 1028). Chesapeake, VA: AACE.

More information

Oracle Real Time Decisions

Oracle Real Time Decisions A Product Review James Taylor CEO CONTENTS Introducing Decision Management Systems Oracle Real Time Decisions Product Architecture Key Features Availability Conclusion Oracle Real Time Decisions (RTD)

More information

Game-based learning framework for collaborative learning and student e-teamwork

Game-based learning framework for collaborative learning and student e-teamwork Game-based learning framework for collaborative learning and student e-teamwork Maja Pivec Olga Dziabenko The paper introduces issues on game-based learning applied within the university and lifelong learning.

More information

Department of Defense DIRECTIVE. SUBJECT: Management of the Department of Defense Information Enterprise

Department of Defense DIRECTIVE. SUBJECT: Management of the Department of Defense Information Enterprise Department of Defense DIRECTIVE SUBJECT: Management of the Department of Defense Information Enterprise References: See Enclosure 1 NUMBER 8000.01 February 10, 2009 ASD(NII)/DoD CIO 1. PURPOSE. This Directive:

More information

Optimal and Worst-Case Performance of Mastery Learning Assessment with Bayesian Knowledge Tracing

Optimal and Worst-Case Performance of Mastery Learning Assessment with Bayesian Knowledge Tracing Optimal and Worst-Case Performance of Mastery Learning Assessment with Bayesian Knowledge Tracing Stephen E. Fancsali, Tristan Nixon, and Steven Ritter Carnegie Learning, Inc. 437 Grant Street, Suite 918

More information

Reasons for need for Computer Engineering program From Computer Engineering Program proposal

Reasons for need for Computer Engineering program From Computer Engineering Program proposal Reasons for need for Computer Engineering program From Computer Engineering Program proposal Department of Computer Science School of Electrical Engineering & Computer Science circa 1988 Dedicated to David

More information

A Model of Distraction using new Architectural Mechanisms to Manage Multiple Goals

A Model of Distraction using new Architectural Mechanisms to Manage Multiple Goals A Model of Distraction using new Architectural Mechanisms to Manage Multiple Goals Niels A. Taatgen (n.a.taatgen@rug.nl), Ioanna Katidioti (i.katidioti@rug.nl), Jelmer Borst (j.p.borst@rug.nl) & Marieke

More information

A Contribution to Expert Decision-based Virtual Product Development

A Contribution to Expert Decision-based Virtual Product Development A Contribution to Expert Decision-based Virtual Product Development László Horváth, Imre J. Rudas Institute of Intelligent Engineering Systems, John von Neumann Faculty of Informatics, Óbuda University,

More information

Essential Instructional Design Competences for Professional Driver Trainers

Essential Instructional Design Competences for Professional Driver Trainers Essential Instructional Design Competences for Professional Driver Trainers This project has been funded with support from the European Commission. This publication reflects the views only of the author,

More information

Using Retrocausal Practice Effects to Predict On-Line Roulette Spins. Michael S. Franklin & Jonathan Schooler UCSB, Department of Psychology.

Using Retrocausal Practice Effects to Predict On-Line Roulette Spins. Michael S. Franklin & Jonathan Schooler UCSB, Department of Psychology. Using Retrocausal Practice Effects to Predict On-Line Roulette Spins Michael S. Franklin & Jonathan Schooler UCSB, Department of Psychology Summary Modern physics suggest that time may be symmetric, thus

More information

Enhanced System Integration Test Automation Tool (E-SITAT) Author: Akshat Sharma

Enhanced System Integration Test Automation Tool (E-SITAT) Author: Akshat Sharma Enhanced System Integration Test Automation Tool (E-SITAT) Author: Akshat Sharma c o n t e n t s Enhanced System Integration Test Automation Tool (E-SITAT) 1. Overview... 3 2. Use of E-SITAT for Automation...

More information

Other Required Courses (14-18 hours)

Other Required Courses (14-18 hours) 1) IT Business Track Required Info Technology Courses (19 hours) 1,2&3 ITEC 2110 Digital Media 1,2&3 ITEC 3100 Intro to Networks 1,2&3 ITEC 3200 Intro to Databases 1 ITEC 3350 ECommerce 1,2&3 ITEC 3900

More information

Program Visualization for Programming Education Case of Jeliot 3

Program Visualization for Programming Education Case of Jeliot 3 Program Visualization for Programming Education Case of Jeliot 3 Roman Bednarik, Andrés Moreno, Niko Myller Department of Computer Science University of Joensuu firstname.lastname@cs.joensuu.fi Abstract:

More information

Cognitive Architecture for Website Design and Usability Evaluation: Comprehension and Information Scent in Performing by Exploration

Cognitive Architecture for Website Design and Usability Evaluation: Comprehension and Information Scent in Performing by Exploration Cognitive Architecture for Website Design and Usability Evaluation: Comprehension and Information Scent in Performing by Exploration Muneo Kitajima National Institute of Advanced Industrial Science and

More information

Experiments with a Camera-Based Human-Computer Interface System

Experiments with a Camera-Based Human-Computer Interface System Experiments with a Camera-Based Human-Computer Interface System Robyn Cloud*, Margrit Betke**, and James Gips*** * Computer Science Department, Boston University, 111 Cummington Street, Boston, MA 02215,

More information

Simulated Students, Mastery Learning, and Improved Learning Curves for Real-World Cognitive Tutors

Simulated Students, Mastery Learning, and Improved Learning Curves for Real-World Cognitive Tutors Simulated Students, Mastery Learning, and Improved Learning Curves for Real-World Cognitive Tutors Stephen E. Fancsali, Tristan Nixon, Annalies Vuong, and Steven Ritter Carnegie Learning, Inc. Frick Building,

More information

Metacognition. Complete the Metacognitive Awareness Inventory for a quick assessment to:

Metacognition. Complete the Metacognitive Awareness Inventory for a quick assessment to: Metacognition Metacognition is essential to successful learning because it enables individuals to better manage their cognitive skills and to determine weaknesses that can be corrected by constructing

More information

The Intelligent Resource Managment For Local Area Networks

The Intelligent Resource Managment For Local Area Networks Intelligent Resource Management for Local Area Networks: Approach and Evolution 1 Roger Meike Martin Marietta Denver Aerospace Space Station Program P.O. Box 179 (MS 01744) Denver, Co. 80201 Abstract The

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Background This thesis describes a multi-agent based architecture for an intelligent assistant system for use in software project planning. The research explored the role of

More information

Reconfigurable Architecture Requirements for Co-Designed Virtual Machines

Reconfigurable Architecture Requirements for Co-Designed Virtual Machines Reconfigurable Architecture Requirements for Co-Designed Virtual Machines Kenneth B. Kent University of New Brunswick Faculty of Computer Science Fredericton, New Brunswick, Canada ken@unb.ca Micaela Serra

More information

SCENARIO DEVELOPMENT FOR DECISION SUPPORT SYSTEM EVALUATION

SCENARIO DEVELOPMENT FOR DECISION SUPPORT SYSTEM EVALUATION SCENARIO DEVELOPMENT FOR DECISION SUPPORT SYSTEM EVALUATION Emilie M. Roth Roth Cognitive Engineering Brookline, MA James W. Gualtieri, William C. Elm and Scott S. Potter Aegis Research Corporation Pittsburgh,

More information

AIRCRAFT PERFORMANCE Pressure Altitude And Density Altitude

AIRCRAFT PERFORMANCE Pressure Altitude And Density Altitude Performance- Page 67 AIRCRAFT PERFORMANCE Pressure Altitude And Density Altitude Pressure altitude is indicated altitude corrected for nonstandard pressure. It is determined by setting 29.92 in the altimeter

More information

Assessment and Instruction: Two Sides of the Same Coin.

Assessment and Instruction: Two Sides of the Same Coin. Assessment and Instruction: Two Sides of the Same Coin. Abstract: In this paper we describe our research and development efforts to integrate assessment and instruction in ways that provide immediate feedback

More information

dm106 TEXT MINING FOR CUSTOMER RELATIONSHIP MANAGEMENT: AN APPROACH BASED ON LATENT SEMANTIC ANALYSIS AND FUZZY CLUSTERING

dm106 TEXT MINING FOR CUSTOMER RELATIONSHIP MANAGEMENT: AN APPROACH BASED ON LATENT SEMANTIC ANALYSIS AND FUZZY CLUSTERING dm106 TEXT MINING FOR CUSTOMER RELATIONSHIP MANAGEMENT: AN APPROACH BASED ON LATENT SEMANTIC ANALYSIS AND FUZZY CLUSTERING ABSTRACT In most CRM (Customer Relationship Management) systems, information on

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Background of the Research Agile and precise maneuverability of helicopters makes them useful for many critical tasks ranging from rescue and law enforcement task to inspection

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Background The command over cloud computing infrastructure is increasing with the growing demands of IT infrastructure during the changed business scenario of the 21 st Century.

More information

The Effect of Context-Based Video Instruction on Learning and Motivation in Online Courses

The Effect of Context-Based Video Instruction on Learning and Motivation in Online Courses THE AMERICAN JOURNAL OF DISTANCE EDUCATION, 19(4), 215 227 Copyright 2005, Lawrence Erlbaum Associates, Inc. The Effect of Context-Based Video Instruction on Learning and Motivation in Online Courses Hee

More information

Master of Science in Computer Science

Master of Science in Computer Science Master of Science in Computer Science Background/Rationale The MSCS program aims to provide both breadth and depth of knowledge in the concepts and techniques related to the theory, design, implementation,

More information

Electronic Performance Support Systems (EPSS): An Effective System for Improving the Performance of Libraries

Electronic Performance Support Systems (EPSS): An Effective System for Improving the Performance of Libraries Electronic Performance Support Systems (EPSS): An Effective System for Improving the Performance of Libraries Madhuresh Singhal & T S Prasanna National Centre for Science Information Indian Institute of

More information

A Dynamic Programming Approach for 4D Flight Route Optimization

A Dynamic Programming Approach for 4D Flight Route Optimization A Dynamic Programming Approach for 4D Flight Route Optimization Christian Kiss-Tóth, Gábor Takács Széchenyi István University, Győr, Hungary IEEE International Conference on Big Data Oct 27-30, 2014 Washington

More information

Anomaly Detection Toolkit for Integrated Systems Health Management (ISHM)

Anomaly Detection Toolkit for Integrated Systems Health Management (ISHM) AIAA Infotech@Aerospace 2010 20-22 April 2010, Atlanta, Georgia AIAA 2010-3498 Anomaly Detection Toolkit for Integrated Systems Health Management (ISHM) John Schmalzel 1 and Fernando Figueroa 2 NASA, Stennis

More information

A STRATEGIC PLANNER FOR ROBOT EXCAVATION' by Humberto Romero-Lois, Research Assistant, Department of Civil Engineering

A STRATEGIC PLANNER FOR ROBOT EXCAVATION' by Humberto Romero-Lois, Research Assistant, Department of Civil Engineering A STRATEGIC PLANNER FOR ROBOT EXCAVATION' by Humberto Romero-Lois, Research Assistant, Department of Civil Engineering Chris Hendrickson, Professor, Department of Civil Engineering, and Irving Oppenheim,

More information

Unique contributions of eye-tracking research to the study of learning with graphics

Unique contributions of eye-tracking research to the study of learning with graphics Learning and Instruction 20 () 167e171 Commentary Unique contributions of eye-tracking research to the study of learning with graphics Richard E. Mayer* Department of Psychology, University of California,

More information

Integrating Software Services for Preproject-Planning

Integrating Software Services for Preproject-Planning Integrating Software Services for Preproject-Planning Edward L DIVITA M.Sc., Ph.D. Candidate divita@stanford.edu Stanford University Stanford, CA 94305-4020 Martin FISCHER Associate Professor fischer@ce.stanford.edu

More information

MOUNTAIN VIEW COLLEGE CORE CURRICULUM EVALUATION COMMITTEE STUDENT LEARNING OUTCOMES COURSE LEVEL VICTOR J. SOTO INSTRUCTIONAL DESIGNER PREPARED BY

MOUNTAIN VIEW COLLEGE CORE CURRICULUM EVALUATION COMMITTEE STUDENT LEARNING OUTCOMES COURSE LEVEL VICTOR J. SOTO INSTRUCTIONAL DESIGNER PREPARED BY 1 MOUNTAIN VIEW COLLEGE CORE CURRICULUM EVALUATION COMMITTEE WRITING INSTRUCTIONAL OBJECTIVES STUDENT LEARNING OUTCOMES COURSE LEVEL PREPARED BY VICTOR J. SOTO INSTRUCTIONAL DESIGNER 2 WRITING INSTRUCTIONAL

More information

An Instructional Aid System for Driving Schools Based on Visual Simulation

An Instructional Aid System for Driving Schools Based on Visual Simulation An Instructional Aid System for Driving Schools Based on Visual Simulation Salvador Bayarri, Rafael Garcia, Pedro Valero, Ignacio Pareja, Institute of Traffic and Road Safety (INTRAS), Marcos Fernandez

More information

Buffer Operations in GIS

Buffer Operations in GIS Buffer Operations in GIS Nagapramod Mandagere, Graduate Student, University of Minnesota npramod@cs.umn.edu SYNONYMS GIS Buffers, Buffering Operations DEFINITION A buffer is a region of memory used to

More information

Extending ACT-R for modeling dynamics and timing for operating human-machine systems

Extending ACT-R for modeling dynamics and timing for operating human-machine systems Extending ACT-R for modeling dynamics and timing for operating human-machine systems SANDRO LEUCHTER & LEON URBAS MoDyS Research Group, Center of Human-Machine Systems, Technische Universität Berlin Keywords:

More information

1.. This UI allows the performance of the business process, for instance, on an ecommerce system buy a book.

1.. This UI allows the performance of the business process, for instance, on an ecommerce system buy a book. * ** Today s organization increasingly prompted to integrate their business processes and to automate the largest portion possible of them. A common term used to reflect the automation of these processes

More information

Ontologies for Enterprise Integration

Ontologies for Enterprise Integration Ontologies for Enterprise Integration Mark S. Fox and Michael Gruninger Department of Industrial Engineering,University of Toronto, 4 Taddle Creek Road, Toronto, Ontario M5S 1A4 tel:1-416-978-6823 fax:1-416-971-1373

More information

Intelligent Tutoring Goes To School in the Big City

Intelligent Tutoring Goes To School in the Big City International Journal of Artificial Intelligence in Education (1997), 8,30-43 Intelligent Tutoring Goes To School in the Big City Kenneth R. Koedinger Human-Computer Interaction Institute School of Computer

More information

Greater Continuity, Consistency, and Timeliness with Business Process Automation

Greater Continuity, Consistency, and Timeliness with Business Process Automation SAP Brief Extensions SAP Business Process Automation by Redwood Objectives Greater Continuity, Consistency, and Timeliness with Business Process Automation Streamline critical enterprise processes Streamline

More information

Learning from web-based instructional systems and cognitive style

Learning from web-based instructional systems and cognitive style British Journal of Educational Technology Vol 34 No 4 2003 407 418 Learning from web-based instructional systems and cognitive style Martin Graff Martin Graff is a lecturer in psychology at the University

More information

ABA AND RDI. Therapy vs. RDI Life Style ABA

ABA AND RDI. Therapy vs. RDI Life Style ABA AND Therapy vs. Life Style Typically with parents hire a staff to work with their child. These therapists work with the child during scheduled therapy times. If parents work with their child, they need

More information

Datavetenskapligt Program (kandidat) Computer Science Programme (master)

Datavetenskapligt Program (kandidat) Computer Science Programme (master) Datavetenskapligt Program (kandidat) Computer Science Programme (master) Wolfgang Ahrendt Director Datavetenskap (BSc), Computer Science (MSc) D&IT Göteborg University, 30/01/2009 Part I D&IT: Computer

More information

Instructional Scaffolding to Improve Learning

Instructional Scaffolding to Improve Learning Instructional Scaffolding to Improve Learning When you incorporate scaffolding in the classroom, you become more of a mentor and facilitator of knowledge rather than the dominant content expert. Although

More information

Study on Developing a Flight Data Visualization

Study on Developing a Flight Data Visualization Study on Developing a Flight Data Visualization Study on Developing a Flight Data Visualization Seoul, Korea Abstract This paper aims to describe the framework of 2D and 3D interface and discuss the design

More information

BUSINESS INTELLIGENCE IN A GLOBAL AIR TRAFFIC MANAGEMENT VIA INTELLIGENT OPERATIONAL DECISION SUPPORT

BUSINESS INTELLIGENCE IN A GLOBAL AIR TRAFFIC MANAGEMENT VIA INTELLIGENT OPERATIONAL DECISION SUPPORT BUSINESS INTELLIGENCE IN A GLOBAL AIR TRAFFIC MANAGEMENT VIA INTELLIGENT OPERATIONAL DECISION SUPPORT BLAGA N. IORDANOVA (*,**) blaga@computer.org (*) BIOR KNOW-HOW Ltd, Warnford Court, 29 Throgmorton

More information

Cognitive Load Theory and Instructional Design: Recent Developments

Cognitive Load Theory and Instructional Design: Recent Developments PAAS, RENKL, INTRODUCTION SWELLER EDUCATIONAL PSYCHOLOGIST, 38(1), 1 4 Copyright 2003, Lawrence Erlbaum Associates, Inc. Cognitive Load Theory and Instructional Design: Recent Developments Fred Paas Educational

More information

The Life of Aviation Training

The Life of Aviation Training Chapter 1 The Life of Aviation Training Life is a culmination of the past, an awareness of the present, an indication of a future beyond knowledge, the quality that gives a touch of divinity to matter.

More information