An Investigation into Team-Based Planning

Size: px
Start display at page:

Download "An Investigation into Team-Based Planning"

Transcription

1 An Investigation into Team-Based Planning Dionysis Kalofonos and Timothy J. Norman Computing Science Department University of Aberdeen Abstract Models of plan formation by teams of autonomous, social agents are of interest in the application of multi-agent systems in both engineering and commerce. A team of agents may be motivated by the need to achieve a common goal, and must agree on a plan of action. However, being autonomous entities, they may differ in the contributions that they are capable of making and may have varying attitudes towards the options available (e.g. preferences over who should do what). Furthermore, in general, it is not appropriate for a team plan to be imposed by a single manager agent. In this paper we investigate methods of collaborative plan construction and conflict resolution in teams of autonomous, social agents. We propose a multiagent planning algorithm that interleaves planning with information exchange, coordination and negotiation, allowing the agents to handle potential conflicts, and to promote their own preferences over the derived solutions Introduction In a team of cooperative agents pursuing a given set of goals the agents should be able to resolve any conflicts introduced by their activities for the achievement of an overall sound solution that supports the goals of the team. A technique widely employed in the resolution of such conflicts is the generation of solutions to sub-problems by individual agents and subsequent merging of those solutions. The merging of solutions to sub-problems results in a team plan, and can be performed by a central manager agent (see [CCPD01]) or in a decentralised manner (see [CD99b, ER94]). Alternatively, as discussed by Chang et al. [CDP93] and by Riley & Veloso [RV01], a central planning agent may be employed to generate the team plan given information about the competencies of the team members, and to distribute the team plan for enactment /04/$20.00 c 2004 IEEE. These approaches either reduce the model to that of a centralised planner with multi-agent plan enactment, or they either assume that sub-problems have few inter-dependencies or require significant post-processing to fix conflicts that may have arisen between the solutions to sub-problems. A means of minimising this post-processing of solutions to sub-problems (or sub-plans) has been suggested by Clement & Durfee [CD99a], where summary information is extracted from a hierarchy of individual plans and communicated among the agents in order to eliminate the degree of backtracking required in refining individual plans. In more recent work Brenner [Bre03] has shown that it is beneficial for agents to interleave planning with communication, since it enables them to identify conflicts early in the planning phase, reducing the cost of backtracking. Following the model presented by Brenner [Bre03], in this paper we present a multi-agent planner based on Graph- Plan [BF97] that allows agents within a team: to interleave plan graph construction with information exchange; and to interleave solution (plan) extraction with various forms of conflict resolution. In our model, interleaving plan graph construction with information exchange allows team members to inform each other of the actions they are willing to perform at a particular stage. Interleaving plan extraction with conflict resolution performs two functions in our model: first, the agents may, during the search for a team plan, inform their teammates about the choices they make in order to eliminate (or at least minimise) backtracking; and second it enables the agents to promote their preferences over the possible plan outcomes. This paper is organised as follows. First, we outline the assumptions that we have made regarding shared knowledge and purpose within the team of agents and the private preferences of individual team members (section 2.1). Then we discuss the two key extensions to GraphPlan [BF97] that we have developed to facilitate its use in team-based plan-

2 ning: information exchange (section 2.2) and conflict resolution (section 2.3). In section 3 we evaluate our approach using a variant of a classical problem domain blocks world for multiple agents. Finally, we discuss avenues for future development and conclude. 2. Multi-Agent GraphPlan 2.1. The Planning Model The team-based planning mechanism presented in this paper is based on the GraphPlan [BF97] algorithm. Graph- Plan operates in two phases: graph expansion and solution extraction. During the graph expansion phase the algorithm creates a planning graph, which encodes the plan search space as a constraint satisfaction network. This graph is expanded until either the graph levels off, 2 in which case no solution can be found, or the network is expanded to a level in which the goals are present and are free from mutual exclusion (mutex) constraints (i.e. there are no constraints in the graph that state that two of the goals cannot both be true at that level). If the graph has been expanded to a level in which the goals appear and are mutex free, a solution may exist in the graph, and the algorithm moves to the solution extraction phase to search for a plan. If no plan is found, the algorithm returns to the graph expansion phase. Our extensions to GraphPlan are detailed in the following two sections, but here we outline the approach that we have taken in developing a team-based planning mechanism. Our principal focus in this research is on maintaining an agent s balance between revealing appropriate information about their preferences in the pursuit of shared goals and not disclosing information about activities unrelated to the shared goal or their complete set of preferences or priorities. We are, therefore, viewing agents in a team as peers, having their own resources and qualifications, but contributing to the process of searching for a team plan. For instance, we want to allow agents to state what actions (and hence resources) that they are willing to contribute to the team activity, not their capabilities. An agent may, for example, decide that it will not contribute a certain resource because it has other, undisclosed, commitments with respect to this resource. We do make a number of assumptions about the information available to each agent in the team prior to the commencement of the planning process and the behaviour of team members. These assumptions are as follows: All the agents share the same knowledge about the (relevant aspects of the) initial state. Otherwise, we would 2 The graph is said to have levelled off if the nodes that may be added at level n are the same as those in level n 1 the algorithm ensures that the operator nodes at level n appear in all levels > n require a pre-planning phase during which any disagreements on matters of truth are resolved. It would be perfectly reasonable to relax this assumption, but modelling such a, potentially complex, discourse between the members of the team is outside the scope of this paper. All the agents share the same knowledge about things that can be done; i.e. the agents have the same model of the operators that may be included in a plan. However, this does not mean that all the agents have the same set of capabilities they are simply aware of the input constraints (preconditions) and output constraints (effects) of each action. This information is essential for the agents to create the edges within a planning graph. The agents are in agreement about the team s goals. We assume that the agents are cooperative although it is an important issue for multi-agent systems research, we do not address the issue of trust or consider the effect that an uncooperative agent would have on team activity. The communication that is taking place is error free (i.e. there is no message loss, sound in the received messages, etc. ), and the agents are not restricted from a communication time frame. With all this information available, why not simply select a single member of the team to search for a solution and distribute this to the other team members? There are a number of reasons for it being inappropriate to do this; here we consider two such reasons: Agents differ in their capabilities and they may have commitments to act outside the context of the team activity. This means that, even if the capabilities of others is common knowledge, only the agent concerned knows when it may or may not contribute an action to the team plan. It would be inappropriate for information about an agent s extra-team commitments to be common knowledge within a team. Execution cost is associated with each operator, agent pair. A particular action (or operator) may be performed by a number of team members (or associated to a number of team members in the team plan), but the costs to each member may be very different. It would be inappropriate for an agent to reveal its individual costs (or any other information that contributes to its preferences/utility function) to other team members, except for declaring preferences over a set of possible outcomes during conflict resolution. So, we have a set of agents that are motivated to collaborate in the construction of a plan of action to solve a conjunction of shared goals how may we adapt an algorithm

3 such as GraphPlan to support this team planning activity? In the following three sections we address our extensions to GraphPlan information exchange and conflict resolution in detail Information exchange Our first modification to the GraphPlan algorithm involves the exchange of information between team members during planning. Conceptually, the members of the team work together on a shared plan and share information by, each in turn, adding to the plan graph. In practise, however, each agent maintains their individual copy of the plan graph and share updates as they make their own contribution to the next plan graph level. The information sharing is designed to ensure that each team member s copy is up-to-date. The additions to the plan graph provided by members of the team are nodes representing actions that each team member is prepared to perform at that point in the plan. Each time the planning graph is expanded one step further, each agent collects all the possible operators that it is willing to contribute to the team plan. These operators are then added to the team plan as operator nodes, appropriate edges are added from the previous propositional level, the new propositional level is constructed, and exclusivity rules are applied. It is important to note here that once an agent has committed a resource to the team plan (i.e. once it has added an operator to the team plan) it may not withdraw that commitment. This is essential to ensure that the multi-agent planning mechanism is guaranteed to terminate. 3 The collaborative plan graph construction then progresses until the team goals appear in the current propositional level (detected by the final agent to contribute to that graph expansion step and flagged for the other members of the team), at which point the team proceeds to extract solutions from the planning graph and agree on who does what through conflict resolution Conflict Resolution Having created the planning graph, which encapsulates the search space of possible team plans, the agents must, in some way, identify a plan within this search space that represents a compromise that each team member finds acceptable. The search for such a compromise must take into account the preferences of each team member. In developing a conflict resolution mechanism of this kind, a typical approach is for each party to identify the set of possible outcomes and submit votes or negotiate over these outcomes. 3 As mentioned in section 2.1, the absence of a plan is characterised by the plan graph levelling off without the goals being present in a propositional level, and this relies on operator nodes at level n appearing in all levels after n. However, in this case the outcomes are encoded in the plan graph, requiring an exhaustive search to extract them all. In contrast to this, agents in the team collaboratively guide the search for one compromise plan within the plan graph by expressing their preferences over which branch to pursue. We have investigated two mechanisms for enabling agents to guide the search for a plan in this manner a voting scheme and a simple round-robin negotiation mechanism discussed in the following sections Borda Count Voting Mechanism Our first approach is to use the Borda Count voting mechanism. This mechanism was introduced in 1770 by Borda as a way of electing a new leader of l Académie Royale des Sciences, Paris. In this voting scheme, for x candidates, each voter awards x points to their first choice, x 1 to their second and so on. The points for each candidate from each voter are counted and the candidate with the most points wins. It is possible for there to be a draw, in which case we select a single winner at random. This voting scheme has a number of characteristics that make it relatively fair including reflectional and rotational symmetry. 4 The simplicity and fairness (to some extent at least) of the Borda Count voting mechanism are distinct advantages. However, there are two key disadvantages of this mechanism for the team-based planning mechanism described in this paper. First, the Borda Count voting scheme requires that each voter give a complete ordering over the possible outcomes. Typically, if the vote is over possible plans (or strictly possible partial plans) an agent may need to arbitrarily place an ordering between two outcomes that it considers equally good. Ideally, we would like to have a mechanism that allows agents to express a partial ordering of preference over the possible outcomes. Second, we now require the introduction of a trusted vote supervisor agent (or returning officer agent); i.e. an agent to whom the votes of each team member are submitted, then, once all votes have been received, determines the outcome using the Borda Count scheme and reports the outcome to the team members. In the light of these limitations, we developed a simple negotiation mechanism Round-Robing Voting Mechanism In our second approach the agents create a partial ordering of outcomes according to their preferences. Thus, they construct a partial ordering of outcomes according to the cost of each outcome to the agent. This ordering of outcomes represents the list of all the votes of an agent a single vote being a set of outcomes, where the agent considers each outcome in this set to be equally good. Having created their votes, the agents agree an ordering in which they will present their 4 Having the property of reflectional symmetry, for example, means that if one voter prefers candidate a to b and another prefers b to a their votes cancel.

4 votes. They then proceed to vote in a round-robin (RR) fashion. The first agent votes by declaring the set of outcomes that it considers to be best. In all subsequent turns the agent taking that turn collects the intersection of the sets of votes of the rest of the members in the team. If the intersection is an empty set then the voter agent publishes its next vote. If the intersection is not an empty set the voter agent finds the intersection between its next vote and the intersection of the sets of votes of the rest of the members in the team. If the new intersection is an empty set, the agents do not come into an agreement in this phase, so the voter agent publishes its next vote. If the new intersection is not an empty set, the voter agent adds the elements of the new intersection to a shared ordered set containing the elements of the final agreement. In any case the voter agent informs the rest members in the team whether it finds an intersection or not. When not voting, agents keep track by updating their local copy of the state of the vote by following each declaration. If the voting agent states that there is no intersection (no agreement), then the others take no action. If the voter agent states that there is a new intersection (new agreement), the others remove the members of the new intersection from the set of votes that have been made. To make this more concrete let us consider the following example. Let us assume agent A has the set of partial orderings of outcomes {{1}, {2, 3}, {4, 5}}, agent B has the set {{3, 4}, {1, 2}, {5}} and agent C has the set {{5}, {2, 3}, {1}, {4}}. Initially the sets of votes V A, V B, V C of the three agents respectively and the final agreement FA is empty. If the ordering of the negotiation that the agents have agreed on is A B C, the negotiation progresses as follows: 1. Agent A votes {1} since V B V A = {1}, V B = {}, V C = {}, FA = {} 2. Agent B votes {3, 4} since V A V A = {1}, V B = {3, 4}, V C = {}, FA = {} 3. Agent C votes {5} since V A VB = {} V A = {1}, V B = {3, 4}, V C = {5}, FA = {} 4. Agent A votes {2, 3} since V B V A = {1, 2, 3}, V B = {3, 4}, V C = {5}, FA = {} 5. Agent B votes {1, 2} since V A V A = {1, 2, 3}, V B = {1, 2, 3, 4}, V C = {5}, FA = {} 6. Agent C updates FA since {2, 3} V A V B = {2, 3} V A = {1}, V B = {1, 4}, V C = {5}, FA = {2, 3} 7. Agent A votes {4, 5} since V B V A = {1, 4, 5}, V B = {1, 4}, V C = {5}, FA = {2, 3} 8. Agent B updates FA since {5} V A VC = {5} V A = {1, 4}, V B = {1, 4}, V C = {}, FA = {2, 3, 5} 9. Agent C updates FA since {1} V A VB = {1} V A = {4}, V B = {4}, V C = {}, FA = {2, 3, 5, 1} 10. Agent A has no votes left, gives way to agent B V A = {4}, V B = {4}, V C = {}, FA = {2, 3, 5, 1} 11. Agent B has no votes left, gives way to agent C V A = {4}, V B = {4}, V C = {}, FA = {2, 3, 5, 1} 12. Agent C updates FA since {4} V A VB = {4} V A = {}, V B = {}, V C = {}, FA = [2, 3, 5, 1, 4] At this point the agents have made all their votes, and the agreement set has been formed and the vote is complete. 3. Evaluation For the evaluation of our work we used the Blocks world domain as presented in IPP. 5 This domain allows us to model agent interactions by associating with each operator the agent who has committed to perform the action. This scheme captures any conflicts that arise during the parallel activity of agents on non-shared resources, and maximises parallel activities in domains where conflicts between operators can be relaxed when activities are associated with different actors. We extended the domain further by adding a give operator (see figure 1) so that we can model how agents can exchange resources. This modification also reduces the length of the found plans, since in order to achieve the same effect as the give operator using the classic Blocks world domain, an agent X would have to either stack or put-down a block that it holds before it can be unstacked or picked-up respectively by an agent Y. The multi-agent planner is written in SICStus Prolog and these experiments were run on an AMD Athlon(tm) 800MHz processor with 256Mb of RAM running Linux. The results presented in this section were taken after running the system on five problems (see figure 2 for a representation in IPP of one of our problem instances). This section is organised as follows. In section 3.1 we present the problems used for the evaluation of the system. In section 3.2 we present the evaluation of our implementation of the Graphplan algorithm showing how our system scales up. Subsequently, in section 3.3 we present the evaluation of the two approaches for conflict resolution Problems For the evaluation of the system we selected the blocks world domain (see figure 2). One of the characteristics of 5 koehler/ipp.html

5 problem 3bl 4bl 5bl 6bl 7bl 1 agent 2 agents 3 agents Table 1. The number of time-steps that the planning graph was expanded in the single and multi-agent cases problem 3bl 4bl 5bl 6bl 7bl 2 agents BC 2 agents RR 3 agents BC 3 agents RR Table 2. CPU times (sec) for the multi-agent with the negotiation and auction mechanisms. this domain is the high degree of inter-relationships among the several entities present in the domain. The principal reason for choosing such problems is that systems that need to fragment a given problem into independent subproblems (see [IM02, ER94]) tend to perform poorly Evaluating our Graphplan implementation Table 1 shows the time-steps that the planning graph was expanded in each of our experiments. We observe that as the degree of parallelism that the agents explore increases, we obtain sorter plans. We also observe that with three agents there is no further reduction in the length of the found plans, since the maximum parallelism that we can explore in the given problems is with the simultaneous performance of actions by two agents Evaluating our conflict resolution approaches Table 2 shows the time spent by the system for any of the five problems. We observe that there is a communication overhead during the round robbing negotiation which is influenced by the number of nodes appearing in the graph. This overhead is fairly insignificant as the graph is small, but tends to increase as the number of nodes in the graph increases, reaching at the worst case 6.57 seconds. 4. Future research In this section, we discuss potential extensions of our work. RealPlan is an extension to the GraphPlan algorithm presented in [SK00, Sri00] where a separation of action selection and resource allocation has been discussed. Instead of considering all the possible instantiations of operators on the available resources, the planner assigns a dummy value to resource variables and ignores any conflicts that would appear from the use of a resource. This method allows the planner to focus to the actual problem without having to resolve any scheduling violations. Having the planner produced an abstract plan, the found plan is then passed to a scheduler which assigns resources to actions and modifies the abstract plan by adding new actions to the plan or moving actions from one time-step to another in order to resolve any conflicts. The extension of GraphPlan presented in RealPlan promises significant benefits from the introduction of additional agents. Since the number of action nodes will remain unchanged regardless of the addition of new agents, and the degree of parallelism increases with the introduction of new agents, we expect to reach shorter plans without the trade-off of larger graphs. As presented in [SK00, Sri00], this approach presents significant speed-ups in comparison to the original GraphPlan algorithm. In [IM02] an approach to the distribution of the Graph- Plan algorithm is presented. IG-DGP (interaction graphbased distributed GraphPlan) starts by creating the interaction graph. Using the interaction graph and the number of resources of each kind of entities present in the domain description the algorithm decomposes the problem into a number of independent subproblems which are delegated to different agents. Having the agents produced a solution to their subproblems, they merge those solutions into a complete plan. The approach presented in [IM02] promises a solution to our problem of decreasing the performance of the algorithm as the graph grows. Studying the planning graph we realise that the size of the graph increases if there is an intersection of the operators that each agent can perform. Having such an intersection the algorithm is forced to propagate into the graph all the possible instantiations of the operators appearing in that intersection to different agents. Being able to distinguish those alternatives of the same operator we can decompose the problem into different subproblems and distribute those subproblems among the agents, keeping the time needed for a solution extraction proportional to the problem the agents tackle and not to the number of agents involved.

6 (:action give :parameters (?a?ra - agent?ob - object) :precodition (and (holding?a?ob) (arm-empty?ra)) :effect (and (arm-empty?a) (holding?ra?ob) (not (holding?a?ob)) (not (arm-empty?ra)))) ) (define (problem 3bl) (:domain blocks-world) (:objects a b c - object vega virgin andromeda - agent) (:init (on-table a) (on b a) (on c b) (clear c) (arm-empty vega) (arm-empty virgin) (arm-empty andromeda)) (:goal (and (on-table b) (on c b) (on a c)))) Figure 1. Our extension of the Blocks world domain defined in IPP. Figure 2. One of the five problems used for the evaluation of our system. 5. Conclusion In this paper we have presented a multi-agent planning system that allows agents within a team to interleave planning with information exchange, coordination and negotiation. We claim that this approach limits the degree of post-processing required for resolving conflicts since potential interference from the concurrent execution of individual plans is identified and handled during the search for a plan. We presented an information exchange mechanism that allows each agent to build a complete planning graph that encodes the abilities of all the agents involved in the planning process, and captures all the possible changes that may take place in the environment that the agent is working in. Additionally we presented two negotiation strategies that allow the agents to coordinate their choices and to promote their own preferences, namely: an implementation of the Borda auction mechanism that ensures a small communication overhead and fairness among the agents, but ties the system into a centralised auction supervisor, and a direct negotiation mechanism that is dis-centralised, but requires a greater communication overhead and promises a smaller degree of fairness. 6. Acknowledgements The research reported in this paper has been funded by the EPSRC project The Information Exchange. The project partners are the Universities of Aberdeen, Dundee and Southampton. References [BF97] A. L. Blum and M. L. Furst. Fast planning through planning graph analysis. Artificial Intelligence, 90: , [Bre03] M. Brenner. Multiagent planning with partially ordered temporal plans. In Proceedings of the Eigh- teenth International Joint Conference on Artificial Intelligence, pages , [CCPD01] J. S. Cox, B. J. Clement, P. M. Pappachan, and E. H. Durfee. Integrating multiagent coordination with reactive plan execution. In Proceedings of the Fifth International Conference on Autonomous Agents, pages , [CD99a] B. J. Clement and E. H. Durfee. Theory for coordinating concurrent hierarchical planning agents using summary information. In Proceedings of the Sixteenth National Conference on Artificial Intelligence, pages , [CD99b] B. J. Clement and E. H. Durfee. Top-down search for coordinating the hierarchical plans of multiple agents. In Proceedings of the Third International Conference on Autonomous Agents, pages , [CDP93] K. H. Chang, W. B. Day, and S. Phiphobmongkol. An agent-oriented multiagent planning system. In Proceedings of the 1993 ACM Conference on Computer Science, pages , [ER94] E. Ephrati and J. S. Rosenschein. Divide and conquer in multi-agent planning. In Proceedings of the Twelfth National Conference on Artificial Intelligence, pages , [IM02] M. Iwen and A. D. Mali. Distributed graphplan. In Proceedings of the Fourteenth IEEE International Conference on Tools with Artificial Intelligence, pages , [RV01] P. Riley and M. Veloso. Planning for distributed execution through use of probabilistic opponent models. In Proceedings of the IJCAI Workshop on Planning under Uncertainty and Incomplete Information, [SK00] B. Srivastava and S. Kambhampati. Scaling up planning by teasing out resource scheduling. In S. Biundo and M. Fox, editors, Recent Advances in AI Planning: Proceedings of the 5th European Conference on Planning, volume 1809 of Lecture Notes in Computer Science, pages Springer-Verlag, [Sri00] B. Srivastava. RealPlan: Decoupling causal and resource reasoning in planning. In Proceedings of the Seventeenth National Conference on Artificial Intelligence, pages , 2000.

Seminar - Organic Computing

Seminar - Organic Computing Seminar - Organic Computing Self-Organisation of OC-Systems Markus Franke 25.01.2006 Typeset by FoilTEX Timetable 1. Overview 2. Characteristics of SO-Systems 3. Concern with Nature 4. Design-Concepts

More information

Rule-based Expert Systems

Rule-based Expert Systems Rule-based Expert Systems What is knowledge? is a theoretical or practical understanding of a subject or a domain. is also the sim of what is currently known, and apparently knowledge is power. Those who

More information

Knowledge-Based - Systems

Knowledge-Based - Systems Knowledge-Based - Systems ; Rajendra Arvind Akerkar Chairman, Technomathematics Research Foundation and Senior Researcher, Western Norway Research institute Priti Srinivas Sajja Sardar Patel University

More information

Guidelines for Mobilitas Pluss postdoctoral grant applications

Guidelines for Mobilitas Pluss postdoctoral grant applications Annex 1 APPROVED by the Management Board of the Estonian Research Council on 23 March 2016, Directive No. 1-1.4/16/63 Guidelines for Mobilitas Pluss postdoctoral grant applications 1. Scope The guidelines

More information

Notes on The Sciences of the Artificial Adapted from a shorter document written for course (Deciding What to Design) 1

Notes on The Sciences of the Artificial Adapted from a shorter document written for course (Deciding What to Design) 1 Notes on The Sciences of the Artificial Adapted from a shorter document written for course 17-652 (Deciding What to Design) 1 Ali Almossawi December 29, 2005 1 Introduction The Sciences of the Artificial

More information

Guidelines for Mobilitas Pluss top researcher grant applications

Guidelines for Mobilitas Pluss top researcher grant applications Annex 1 APPROVED by the Management Board of the Estonian Research Council on 23 March 2016, Directive No. 1-1.4/16/63 Guidelines for Mobilitas Pluss top researcher grant applications 1. Scope The guidelines

More information

Discriminative Learning of Beam-Search Heuristics for Planning

Discriminative Learning of Beam-Search Heuristics for Planning Discriminative Learning of Beam-Search Heuristics for Planning Yuehua Xu School of EECS Oregon State University Corvallis,OR 97331 xuyu@eecs.oregonstate.edu Alan Fern School of EECS Oregon State University

More information

Case Acquisition Strategies for Case-Based Reasoning in Real-Time Strategy Games

Case Acquisition Strategies for Case-Based Reasoning in Real-Time Strategy Games Proceedings of the Twenty-Fifth International Florida Artificial Intelligence Research Society Conference Case Acquisition Strategies for Case-Based Reasoning in Real-Time Strategy Games Santiago Ontañón

More information

Learning Cases to Resolve Conflicts and Improve Group Behavior

Learning Cases to Resolve Conflicts and Improve Group Behavior From: AAAI Technical Report WS-96-02. Compilation copyright 1996, AAAI (www.aaai.org). All rights reserved. Learning Cases to Resolve Conflicts and Improve Group Behavior Thomas Haynes and Sandip Sen Department

More information

A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING

A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING Yong Sun, a * Colin Fidge b and Lin Ma a a CRC for Integrated Engineering Asset Management, School of Engineering Systems, Queensland

More information

Cognitive Modeling. Tower of Hanoi: Description. Tower of Hanoi: The Task. Lecture 5: Models of Problem Solving. Frank Keller.

Cognitive Modeling. Tower of Hanoi: Description. Tower of Hanoi: The Task. Lecture 5: Models of Problem Solving. Frank Keller. Cognitive Modeling Lecture 5: Models of Problem Solving Frank Keller School of Informatics University of Edinburgh keller@inf.ed.ac.uk January 22, 2008 1 2 3 4 Reading: Cooper (2002:Ch. 4). Frank Keller

More information

Causal Link Semantics for Narrative Planning Using Numeric Fluents

Causal Link Semantics for Narrative Planning Using Numeric Fluents Proceedings, The Thirteenth AAAI Conference on Artificial Intelligence and Interactive Digital Entertainment (AIIDE-17) Causal Link Semantics for Narrative Planning Using Numeric Fluents Rachelyn Farrell,

More information

Visual CP Representation of Knowledge

Visual CP Representation of Knowledge Visual CP Representation of Knowledge Heather D. Pfeiffer and Roger T. Hartley Department of Computer Science New Mexico State University Las Cruces, NM 88003-8001, USA email: hdp@cs.nmsu.edu and rth@cs.nmsu.edu

More information

Clouds = Heavy Sidewalk = Wet. davinci V2.1 alpha3

Clouds = Heavy Sidewalk = Wet. davinci V2.1 alpha3 Identifying and Handling Structural Incompleteness for Validation of Probabilistic Knowledge-Bases Eugene Santos Jr. Dept. of Comp. Sci. & Eng. University of Connecticut Storrs, CT 06269-3155 eugene@cse.uconn.edu

More information

Learning and Transferring Relational Instance-Based Policies

Learning and Transferring Relational Instance-Based Policies Learning and Transferring Relational Instance-Based Policies Rocío García-Durán, Fernando Fernández y Daniel Borrajo Universidad Carlos III de Madrid Avda de la Universidad 30, 28911-Leganés (Madrid),

More information

General rules and guidelines for the PhD programme at the University of Copenhagen Adopted 3 November 2014

General rules and guidelines for the PhD programme at the University of Copenhagen Adopted 3 November 2014 General rules and guidelines for the PhD programme at the University of Copenhagen Adopted 3 November 2014 Contents 1. Introduction 2 1.1 General rules 2 1.2 Objective and scope 2 1.3 Organisation of the

More information

Axiom 2013 Team Description Paper

Axiom 2013 Team Description Paper Axiom 2013 Team Description Paper Mohammad Ghazanfari, S Omid Shirkhorshidi, Farbod Samsamipour, Hossein Rahmatizadeh Zagheli, Mohammad Mahdavi, Payam Mohajeri, S Abbas Alamolhoda Robotics Scientific Association

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

Higher education is becoming a major driver of economic competitiveness

Higher education is becoming a major driver of economic competitiveness Executive Summary Higher education is becoming a major driver of economic competitiveness in an increasingly knowledge-driven global economy. The imperative for countries to improve employment skills calls

More information

The Good Judgment Project: A large scale test of different methods of combining expert predictions

The Good Judgment Project: A large scale test of different methods of combining expert predictions The Good Judgment Project: A large scale test of different methods of combining expert predictions Lyle Ungar, Barb Mellors, Jon Baron, Phil Tetlock, Jaime Ramos, Sam Swift The University of Pennsylvania

More information

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas Exploiting Distance Learning Methods and Multimediaenhanced instructional content to support IT Curricula in Greek Technological Educational Institutes P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou,

More information

The open source development model has unique characteristics that make it in some

The open source development model has unique characteristics that make it in some Is the Development Model Right for Your Organization? A roadmap to open source adoption by Ibrahim Haddad The open source development model has unique characteristics that make it in some instances a superior

More information

Action Models and their Induction

Action Models and their Induction Action Models and their Induction Michal Čertický, Comenius University, Bratislava certicky@fmph.uniba.sk March 5, 2013 Abstract By action model, we understand any logic-based representation of effects

More information

Real Estate Agents Authority Guide to Continuing Education. June 2016

Real Estate Agents Authority Guide to Continuing Education. June 2016 Real Estate Agents Authority Guide to Continuing Education June 2016 Contents Section 1: Continuing education explained 3 1.1 Verifiable continuing education... 4 1.2 Non-verifiable continuing education...

More information

An OO Framework for building Intelligence and Learning properties in Software Agents

An OO Framework for building Intelligence and Learning properties in Software Agents An OO Framework for building Intelligence and Learning properties in Software Agents José A. R. P. Sardinha, Ruy L. Milidiú, Carlos J. P. Lucena, Patrick Paranhos Abstract Software agents are defined as

More information

AUTOMATED TROUBLESHOOTING OF MOBILE NETWORKS USING BAYESIAN NETWORKS

AUTOMATED TROUBLESHOOTING OF MOBILE NETWORKS USING BAYESIAN NETWORKS AUTOMATED TROUBLESHOOTING OF MOBILE NETWORKS USING BAYESIAN NETWORKS R.Barco 1, R.Guerrero 2, G.Hylander 2, L.Nielsen 3, M.Partanen 2, S.Patel 4 1 Dpt. Ingeniería de Comunicaciones. Universidad de Málaga.

More information

Transfer Learning Action Models by Measuring the Similarity of Different Domains

Transfer Learning Action Models by Measuring the Similarity of Different Domains Transfer Learning Action Models by Measuring the Similarity of Different Domains Hankui Zhuo 1, Qiang Yang 2, and Lei Li 1 1 Software Research Institute, Sun Yat-sen University, Guangzhou, China. zhuohank@gmail.com,lnslilei@mail.sysu.edu.cn

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

Running Head: STUDENT CENTRIC INTEGRATED TECHNOLOGY

Running Head: STUDENT CENTRIC INTEGRATED TECHNOLOGY SCIT Model 1 Running Head: STUDENT CENTRIC INTEGRATED TECHNOLOGY Instructional Design Based on Student Centric Integrated Technology Model Robert Newbury, MS December, 2008 SCIT Model 2 Abstract The ADDIE

More information

A MULTI-AGENT SYSTEM FOR A DISTANCE SUPPORT IN EDUCATIONAL ROBOTICS

A MULTI-AGENT SYSTEM FOR A DISTANCE SUPPORT IN EDUCATIONAL ROBOTICS A MULTI-AGENT SYSTEM FOR A DISTANCE SUPPORT IN EDUCATIONAL ROBOTICS Sébastien GEORGE Christophe DESPRES Laboratoire d Informatique de l Université du Maine Avenue René Laennec, 72085 Le Mans Cedex 9, France

More information

On the Combined Behavior of Autonomous Resource Management Agents

On the Combined Behavior of Autonomous Resource Management Agents On the Combined Behavior of Autonomous Resource Management Agents Siri Fagernes 1 and Alva L. Couch 2 1 Faculty of Engineering Oslo University College Oslo, Norway siri.fagernes@iu.hio.no 2 Computer Science

More information

RCPCH MMC Cohort Study (Part 4) March 2016

RCPCH MMC Cohort Study (Part 4) March 2016 RCPCH MMC Cohort Study (Part 4) March 2016 Acknowledgements Dr Simon Clark, Officer for Workforce Planning, RCPCH Dr Carol Ewing, Vice President Health Services, RCPCH Dr Daniel Lumsden, Former Chair,

More information

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes Stacks Teacher notes Activity description (Interactive not shown on this sheet.) Pupils start by exploring the patterns generated by moving counters between two stacks according to a fixed rule, doubling

More information

A Case-Based Approach To Imitation Learning in Robotic Agents

A Case-Based Approach To Imitation Learning in Robotic Agents A Case-Based Approach To Imitation Learning in Robotic Agents Tesca Fitzgerald, Ashok Goel School of Interactive Computing Georgia Institute of Technology, Atlanta, GA 30332, USA {tesca.fitzgerald,goel}@cc.gatech.edu

More information

POLA: a student modeling framework for Probabilistic On-Line Assessment of problem solving performance

POLA: a student modeling framework for Probabilistic On-Line Assessment of problem solving performance POLA: a student modeling framework for Probabilistic On-Line Assessment of problem solving performance Cristina Conati, Kurt VanLehn Intelligent Systems Program University of Pittsburgh Pittsburgh, PA,

More information

Consent for Further Education Colleges to Invest in Companies September 2011

Consent for Further Education Colleges to Invest in Companies September 2011 Consent for Further Education Colleges to Invest in Companies September 2011 Of interest to college principals and finance directors as well as staff within the Skills Funding Agency. Summary This guidance

More information

Infrared Paper Dryer Control Scheme

Infrared Paper Dryer Control Scheme Infrared Paper Dryer Control Scheme INITIAL PROJECT SUMMARY 10/03/2005 DISTRIBUTED MEGAWATTS Carl Lee Blake Peck Rob Schaerer Jay Hudkins 1. Project Overview 1.1 Stake Holders Potlatch Corporation, Idaho

More information

Software Maintenance

Software Maintenance 1 What is Software Maintenance? Software Maintenance is a very broad activity that includes error corrections, enhancements of capabilities, deletion of obsolete capabilities, and optimization. 2 Categories

More information

Programme Specification

Programme Specification Programme Specification Title: Accounting and Finance Final Award: Master of Science (MSc) With Exit Awards at: Postgraduate Certificate (PG Cert) Postgraduate Diploma (PG Dip) Master of Science (MSc)

More information

Conditions of study and examination regulations of the. European Master of Science in Midwifery

Conditions of study and examination regulations of the. European Master of Science in Midwifery Conditions of study and examination regulations of the European Master of Science in Midwifery Midwifery Research and Education Unit Department of Obstetrics and Gynaecology Hannover Medical School September

More information

ESC Declaration and Management of Conflict of Interest Policy

ESC Declaration and Management of Conflict of Interest Policy ESC Declaration and Management of Conflict of Interest Policy The European Society of Cardiology (ESC) is dedicated to reducing the burden of cardiovascular disease and improving the standards of care

More information

A simulated annealing and hill-climbing algorithm for the traveling tournament problem

A simulated annealing and hill-climbing algorithm for the traveling tournament problem European Journal of Operational Research xxx (2005) xxx xxx Discrete Optimization A simulated annealing and hill-climbing algorithm for the traveling tournament problem A. Lim a, B. Rodrigues b, *, X.

More information

TOKEN-BASED APPROACH FOR SCALABLE TEAM COORDINATION. by Yang Xu PhD of Information Sciences

TOKEN-BASED APPROACH FOR SCALABLE TEAM COORDINATION. by Yang Xu PhD of Information Sciences TOKEN-BASED APPROACH FOR SCALABLE TEAM COORDINATION by Yang Xu PhD of Information Sciences Submitted to the Graduate Faculty of in partial fulfillment of the requirements for the degree of Doctor of Philosophy

More information

Firms and Markets Saturdays Summer I 2014

Firms and Markets Saturdays Summer I 2014 PRELIMINARY DRAFT VERSION. SUBJECT TO CHANGE. Firms and Markets Saturdays Summer I 2014 Professor Thomas Pugel Office: Room 11-53 KMC E-mail: tpugel@stern.nyu.edu Tel: 212-998-0918 Fax: 212-995-4212 This

More information

Regional Bureau for Education in Africa (BREDA)

Regional Bureau for Education in Africa (BREDA) United Nations Education, Scientific and Cultural Organization Regional Bureau for Education in Africa (BREDA) Regional Conference on Higher Education in Africa (CRESA) 10-13 November 2008 Preparatory

More information

Designing a Computer to Play Nim: A Mini-Capstone Project in Digital Design I

Designing a Computer to Play Nim: A Mini-Capstone Project in Digital Design I Session 1793 Designing a Computer to Play Nim: A Mini-Capstone Project in Digital Design I John Greco, Ph.D. Department of Electrical and Computer Engineering Lafayette College Easton, PA 18042 Abstract

More information

Parsing of part-of-speech tagged Assamese Texts

Parsing of part-of-speech tagged Assamese Texts IJCSI International Journal of Computer Science Issues, Vol. 6, No. 1, 2009 ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 28 Parsing of part-of-speech tagged Assamese Texts Mirzanur Rahman 1, Sufal

More information

ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology

ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology Tiancheng Zhao CMU-LTI-16-006 Language Technologies Institute School of Computer Science Carnegie Mellon

More information

Modeling user preferences and norms in context-aware systems

Modeling user preferences and norms in context-aware systems Modeling user preferences and norms in context-aware systems Jonas Nilsson, Cecilia Lindmark Jonas Nilsson, Cecilia Lindmark VT 2016 Bachelor's thesis for Computer Science, 15 hp Supervisor: Juan Carlos

More information

1. Professional learning communities Prelude. 4.2 Introduction

1. Professional learning communities Prelude. 4.2 Introduction 1. Professional learning communities 1.1. Prelude The teachers from the first prelude, come together for their first meeting Cristina: Willem: Cristina: Tomaž: Rik: Marleen: Barbara: Rik: Tomaž: Marleen:

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS School of Physical Therapy Clinical Education FREQUENTLY ASKED QUESTIONS When do I begin the selection process for each clinical internship? The process begins at different times for each internship. In

More information

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition Chapter 2: The Representation of Knowledge Expert Systems: Principles and Programming, Fourth Edition Objectives Introduce the study of logic Learn the difference between formal logic and informal logic

More information

A theoretic and practical framework for scheduling in a stochastic environment

A theoretic and practical framework for scheduling in a stochastic environment J Sched (2009) 12: 315 344 DOI 10.1007/s10951-008-0080-x A theoretic and practical framework for scheduling in a stochastic environment Julien Bidot Thierry Vidal Philippe Laborie J. Christopher Beck Received:

More information

On-Line Data Analytics

On-Line Data Analytics International Journal of Computer Applications in Engineering Sciences [VOL I, ISSUE III, SEPTEMBER 2011] [ISSN: 2231-4946] On-Line Data Analytics Yugandhar Vemulapalli #, Devarapalli Raghu *, Raja Jacob

More information

Retrieval in cued recall

Retrieval in cued recall Memory & Cognition 1975, Vol. 3 (3), 341-348 Retrieval in cued recall JOHN L. SANTA Rutgers University, Douglass College, New Brunswick, New Jersey 08903 ALAN B. RUSKIN University ofcalifornio, Irvine,

More information

Evolution of Collective Commitment during Teamwork

Evolution of Collective Commitment during Teamwork Fundamenta Informaticae 56 (2003) 329 371 329 IOS Press Evolution of Collective Commitment during Teamwork Barbara Dunin-Kȩplicz Institute of Informatics, Warsaw University Banacha 2, 02-097 Warsaw, Poland

More information

Expert Reference Series of White Papers. Mastering Problem Management

Expert Reference Series of White Papers. Mastering Problem Management Expert Reference Series of White Papers Mastering Problem Management 1-800-COURSES www.globalknowledge.com Mastering Problem Management Hank Marquis, PhD, FBCS, CITP Introduction IT Organization (ITO)

More information

COMPUTER-ASSISTED INDEPENDENT STUDY IN MULTIVARIATE CALCULUS

COMPUTER-ASSISTED INDEPENDENT STUDY IN MULTIVARIATE CALCULUS COMPUTER-ASSISTED INDEPENDENT STUDY IN MULTIVARIATE CALCULUS L. Descalço 1, Paula Carvalho 1, J.P. Cruz 1, Paula Oliveira 1, Dina Seabra 2 1 Departamento de Matemática, Universidade de Aveiro (PORTUGAL)

More information

The Future of Consortia among Indian Libraries - FORSA Consortium as Forerunner?

The Future of Consortia among Indian Libraries - FORSA Consortium as Forerunner? Library and Information Services in Astronomy IV July 2-5, 2002, Prague, Czech Republic B. Corbin, E. Bryson, and M. Wolf (eds) The Future of Consortia among Indian Libraries - FORSA Consortium as Forerunner?

More information

ISFA2008U_120 A SCHEDULING REINFORCEMENT LEARNING ALGORITHM

ISFA2008U_120 A SCHEDULING REINFORCEMENT LEARNING ALGORITHM Proceedings of 28 ISFA 28 International Symposium on Flexible Automation Atlanta, GA, USA June 23-26, 28 ISFA28U_12 A SCHEDULING REINFORCEMENT LEARNING ALGORITHM Amit Gil, Helman Stern, Yael Edan, and

More information

General study plan for third-cycle programmes in Sociology

General study plan for third-cycle programmes in Sociology Date of adoption: 07/06/2017 Ref. no: 2017/3223-4.1.1.2 Faculty of Social Sciences Third-cycle education at Linnaeus University is regulated by the Swedish Higher Education Act and Higher Education Ordinance

More information

CORE CURRICULUM FOR REIKI

CORE CURRICULUM FOR REIKI CORE CURRICULUM FOR REIKI Published July 2017 by The Complementary and Natural Healthcare Council (CNHC) copyright CNHC Contents Introduction... page 3 Overall aims of the course... page 3 Learning outcomes

More information

Team Dispersal. Some shaping ideas

Team Dispersal. Some shaping ideas Team Dispersal Some shaping ideas The storyline is how distributed teams can be a liability or an asset or anything in between. It isn t simply a case of neutralizing the down side Nick Clare, January

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

A Pipelined Approach for Iterative Software Process Model

A Pipelined Approach for Iterative Software Process Model A Pipelined Approach for Iterative Software Process Model Ms.Prasanthi E R, Ms.Aparna Rathi, Ms.Vardhani J P, Mr.Vivek Krishna Electronics and Radar Development Establishment C V Raman Nagar, Bangalore-560093,

More information

Red Flags of Conflict

Red Flags of Conflict CONFLICT MANAGEMENT Introduction Webster s Dictionary defines conflict as a battle, contest of opposing forces, discord, antagonism existing between primitive desires, instincts and moral, religious, or

More information

Radius STEM Readiness TM

Radius STEM Readiness TM Curriculum Guide Radius STEM Readiness TM While today s teens are surrounded by technology, we face a stark and imminent shortage of graduates pursuing careers in Science, Technology, Engineering, and

More information

An Open Framework for Integrated Qualification Management Portals

An Open Framework for Integrated Qualification Management Portals An Open Framework for Integrated Qualification Management Portals Michael Fuchs, Claudio Muscogiuri, Claudia Niederée, Matthias Hemmje FhG IPSI D-64293 Darmstadt, Germany {fuchs,musco,niederee,hemmje}@ipsi.fhg.de

More information

PUBLIC CASE REPORT Use of the GeoGebra software at upper secondary school

PUBLIC CASE REPORT Use of the GeoGebra software at upper secondary school PUBLIC CASE REPORT Use of the GeoGebra software at upper secondary school Linked to the pedagogical activity: Use of the GeoGebra software at upper secondary school Written by: Philippe Leclère, Cyrille

More information

Rule Learning With Negation: Issues Regarding Effectiveness

Rule Learning With Negation: Issues Regarding Effectiveness Rule Learning With Negation: Issues Regarding Effectiveness S. Chua, F. Coenen, G. Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX Liverpool, United

More information

Oklahoma State University Policy and Procedures

Oklahoma State University Policy and Procedures Oklahoma State University Policy and Procedures REAPPOINTMENT, PROMOTION AND TENURE PROCESS FOR RANKED FACULTY 2-0902 ACADEMIC AFFAIRS September 2015 PURPOSE The purpose of this policy and procedures letter

More information

Shared Mental Models

Shared Mental Models Shared Mental Models A Conceptual Analysis Catholijn M. Jonker 1, M. Birna van Riemsdijk 1, and Bas Vermeulen 2 1 EEMCS, Delft University of Technology, Delft, The Netherlands {m.b.vanriemsdijk,c.m.jonker}@tudelft.nl

More information

FF+FPG: Guiding a Policy-Gradient Planner

FF+FPG: Guiding a Policy-Gradient Planner FF+FPG: Guiding a Policy-Gradient Planner Olivier Buffet LAAS-CNRS University of Toulouse Toulouse, France firstname.lastname@laas.fr Douglas Aberdeen National ICT australia & The Australian National University

More information

RANKING AND UNRANKING LEFT SZILARD LANGUAGES. Erkki Mäkinen DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF TAMPERE REPORT A ER E P S I M S

RANKING AND UNRANKING LEFT SZILARD LANGUAGES. Erkki Mäkinen DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF TAMPERE REPORT A ER E P S I M S N S ER E P S I M TA S UN A I S I T VER RANKING AND UNRANKING LEFT SZILARD LANGUAGES Erkki Mäkinen DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF TAMPERE REPORT A-1997-2 UNIVERSITY OF TAMPERE DEPARTMENT OF

More information

ECE-492 SENIOR ADVANCED DESIGN PROJECT

ECE-492 SENIOR ADVANCED DESIGN PROJECT ECE-492 SENIOR ADVANCED DESIGN PROJECT Meeting #3 1 ECE-492 Meeting#3 Q1: Who is not on a team? Q2: Which students/teams still did not select a topic? 2 ENGINEERING DESIGN You have studied a great deal

More information

2 di 7 29/06/

2 di 7 29/06/ 2 di 7 29/06/2011 9.09 Preamble The General Conference of the United Nations Educational, Scientific and Cultural Organization, meeting at Paris from 17 October 1989 to 16 November 1989 at its twenty-fifth

More information

22/07/10. Last amended. Date: 22 July Preamble

22/07/10. Last amended. Date: 22 July Preamble 03-1 Please note that this document is a non-binding convenience translation. Only the German version of the document entitled "Studien- und Prüfungsordnung der Juristischen Fakultät der Universität Heidelberg

More information

Liquid Narrative Group Technical Report Number

Liquid Narrative Group Technical Report Number http://liquidnarrative.csc.ncsu.edu/pubs/tr04-004.pdf NC STATE UNIVERSITY_ Liquid Narrative Group Technical Report Number 04-004 Equivalence between Narrative Mediation and Branching Story Graphs Mark

More information

A Context-Driven Use Case Creation Process for Specifying Automotive Driver Assistance Systems

A Context-Driven Use Case Creation Process for Specifying Automotive Driver Assistance Systems A Context-Driven Use Case Creation Process for Specifying Automotive Driver Assistance Systems Hannes Omasreiter, Eduard Metzker DaimlerChrysler AG Research Information and Communication Postfach 23 60

More information

University of Michigan - Flint POLICY ON FACULTY CONFLICTS OF INTEREST AND CONFLICTS OF COMMITMENT

University of Michigan - Flint POLICY ON FACULTY CONFLICTS OF INTEREST AND CONFLICTS OF COMMITMENT University of Michigan - Flint POLICY ON FACULTY CONFLICTS OF INTEREST AND CONFLICTS OF COMMITMENT A. Identification of Potential Conflicts of Interest and Commitment Potential conflicts of interest and

More information

Agent-Based Software Engineering

Agent-Based Software Engineering Agent-Based Software Engineering Learning Guide Information for Students 1. Description Grade Module Máster Universitario en Ingeniería de Software - European Master on Software Engineering Advanced Software

More information

Code of Practice on Freedom of Speech

Code of Practice on Freedom of Speech Code of Practice on Freedom of Speech Rev Date Purpose of Issue / Description of Change Equality Impact Assessment Completed 1. October 2011 Initial Issue 2. 8 th June 2015 Revision version 2 28 th July

More information

Automating the E-learning Personalization

Automating the E-learning Personalization Automating the E-learning Personalization Fathi Essalmi 1, Leila Jemni Ben Ayed 1, Mohamed Jemni 1, Kinshuk 2, and Sabine Graf 2 1 The Research Laboratory of Technologies of Information and Communication

More information

Emergency Management Games and Test Case Utility:

Emergency Management Games and Test Case Utility: IST Project N 027568 IRRIIS Project Rome Workshop, 18-19 October 2006 Emergency Management Games and Test Case Utility: a Synthetic Methodological Socio-Cognitive Perspective Adam Maria Gadomski, ENEA

More information

Student Assessment and Evaluation: The Alberta Teaching Profession s View

Student Assessment and Evaluation: The Alberta Teaching Profession s View Number 4 Fall 2004, Revised 2006 ISBN 978-1-897196-30-4 ISSN 1703-3764 Student Assessment and Evaluation: The Alberta Teaching Profession s View In recent years the focus on high-stakes provincial testing

More information

A Reinforcement Learning Variant for Control Scheduling

A Reinforcement Learning Variant for Control Scheduling A Reinforcement Learning Variant for Control Scheduling Aloke Guha Honeywell Sensor and System Development Center 3660 Technology Drive Minneapolis MN 55417 Abstract We present an algorithm based on reinforcement

More information

The Enterprise Knowledge Portal: The Concept

The Enterprise Knowledge Portal: The Concept The Enterprise Knowledge Portal: The Concept Executive Information Systems, Inc. www.dkms.com eisai@home.com (703) 461-8823 (o) 1 A Beginning Where is the life we have lost in living! Where is the wisdom

More information

Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments

Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments Cristina Vertan, Walther v. Hahn University of Hamburg, Natural Language Systems Division Hamburg,

More information

How to Judge the Quality of an Objective Classroom Test

How to Judge the Quality of an Objective Classroom Test How to Judge the Quality of an Objective Classroom Test Technical Bulletin #6 Evaluation and Examination Service The University of Iowa (319) 335-0356 HOW TO JUDGE THE QUALITY OF AN OBJECTIVE CLASSROOM

More information

Abstractions and the Brain

Abstractions and the Brain Abstractions and the Brain Brian D. Josephson Department of Physics, University of Cambridge Cavendish Lab. Madingley Road Cambridge, UK. CB3 OHE bdj10@cam.ac.uk http://www.tcm.phy.cam.ac.uk/~bdj10 ABSTRACT

More information

EFFECTIVE CLASSROOM MANAGEMENT UNDER COMPETENCE BASED EDUCATION SCHEME

EFFECTIVE CLASSROOM MANAGEMENT UNDER COMPETENCE BASED EDUCATION SCHEME EFFECTIVE CLASSROOM MANAGEMENT UNDER COMPETENCE BASED EDUCATION SCHEME By C.S. MSIRIKALE NBAA: Classroom Management Techniques Contents Introduction Meaning of Classroom Management Teaching methods under

More information

Politics and Society Curriculum Specification

Politics and Society Curriculum Specification Leaving Certificate Politics and Society Curriculum Specification Ordinary and Higher Level 1 September 2015 2 Contents Senior cycle 5 The experience of senior cycle 6 Politics and Society 9 Introduction

More information

A Model to Detect Problems on Scrum-based Software Development Projects

A Model to Detect Problems on Scrum-based Software Development Projects A Model to Detect Problems on Scrum-based Software Development Projects ABSTRACT There is a high rate of software development projects that fails. Whenever problems can be detected ahead of time, software

More information

An Interactive Intelligent Language Tutor Over The Internet

An Interactive Intelligent Language Tutor Over The Internet An Interactive Intelligent Language Tutor Over The Internet Trude Heift Linguistics Department and Language Learning Centre Simon Fraser University, B.C. Canada V5A1S6 E-mail: heift@sfu.ca Abstract: This

More information

UNIVERSITY OF ABERDEEN UNIVERSITY COURT. Minutes of meeting held on 11 February 2003

UNIVERSITY OF ABERDEEN UNIVERSITY COURT. Minutes of meeting held on 11 February 2003 UNIVERSITY OF ABERDEEN UNIVERSITY COURT Minutes of meeting held on 11 February 2003 Present: Rector (In the Chair), Principal, Mr A Amoore, Mr R Clements, Mr D Cockburn, Dr A Dawson, Dr N Dower, Mr H Duncan,

More information

University of Essex Access Agreement

University of Essex Access Agreement University of Essex Access Agreement Updated in August 2009 to include new tuition fee and bursary provision for 2010 entry 1. Context The University of Essex is academically a strong institution, with

More information

Towards Team Formation via Automated Planning

Towards Team Formation via Automated Planning Towards Team Formation via Automated Planning Christian Muise, Frank Dignum, Paolo Felli, Tim Miller, Adrian R. Pearce, Liz Sonenberg Department of Computing and Information Systems, University of Melbourne

More information

Chapter 10 APPLYING TOPIC MODELING TO FORENSIC DATA. 1. Introduction. Alta de Waal, Jacobus Venter and Etienne Barnard

Chapter 10 APPLYING TOPIC MODELING TO FORENSIC DATA. 1. Introduction. Alta de Waal, Jacobus Venter and Etienne Barnard Chapter 10 APPLYING TOPIC MODELING TO FORENSIC DATA Alta de Waal, Jacobus Venter and Etienne Barnard Abstract Most actionable evidence is identified during the analysis phase of digital forensic investigations.

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

Nonfunctional Requirements: From Elicitation to Conceptual Models

Nonfunctional Requirements: From Elicitation to Conceptual Models 328 IEEE TRANSACTIONS ON SOFTWARE ENGINEERING, VOL. 30, NO. 5, MAY 2004 Nonfunctional Requirements: From Elicitation to Conceptual Models Luiz Marcio Cysneiros, Member, IEEE Computer Society, and Julio

More information