Evolutionary Computation for Modelling and Optimization in Finance

Size: px
Start display at page:

Download "Evolutionary Computation for Modelling and Optimization in Finance"

Transcription

1 Evolutionary Computation for Modelling and Optimization in Finance Sandra Paterlini CEFIN & RECent, University of Modena and Reggio E., Italy

2 Introduction Why do we need Evolutionary Computation (EC)? conventional techniques require rigid assumptions (convexity, linearity, differentiability, explicitly defined objectives, problem can be split into subproblems, etc.) often the objective function is discontinuous, multimodal, has plateaus, etc. many discrete real-world problems are computational hard, i.e., an exact solution cannot be computed in reasonable time often we get away with simplifications (linearization, convexication, etc.), but not in all cases! conventional techniques lack generality; new problem solutions require new implementation but EAs are not always necessary! Sandra Paterlini 2

3 Why do we need EC in finance? Multimodality: Value-at-Risk Optimization Gilli and Schumann, 2008 Sandra Paterlini 3

4 Why do we need EC in finance? Plateaus: Credit Risk Bucketing Krink, Paterlini and Resti 2008 Sandra Paterlini 4

5 Why do we need EC in finance? Constraints: Index Tracking using q-norm penalty Fastrich, Paterlini and Winker, 2010 Sandra Paterlini 5

6 EAs and related search heuristics Evolutionary algorithms (EA) Related heuristics GA GP EP ES DE Genetic Algorithms Genetic Programming Evolutionary Programming Evolution Strategies SA GLS TS AS PS Particle swarms Ant systems Tabu search Guided local search Simulated Annealing, Hill Climbing Differential evolution Sandra Paterlini 6

7 EAs and related search heuristics Common denominator in EAs Algorithms that deal with a population of individuals, which are selected and altered in an iterative process. Why are EAs different from local search? EAs and related heuristics are based on the idea of competition and recombination of candidate solutions in a population Sandra Paterlini 7

8 Pseudo-code void EvolutionaryAlgorithm() { t = 0; initialise population P(t); // create random solutions evaluate population P(t); // calculate fitnesses while (not termination condition) { t = t + 1; select next generation P(t) from P(t-1); alter P(t); // mutate and recombine genes evaluate population P(t); // calculate fitnesses } } P(t) = Population at time t Sandra Paterlini 8

9 Multiobjective Financial Portfolio Optimization

10 Multiobjective Portfolio Optimization Mean-VaR (1-α) Selection (1a ) (1b ) subject (1c ) (1d )... where L n N s i 1 i 1 w i to : 1 other non linear constraints L s n min max s f ( w') L f w ( w') L i 1 VaR 1 corresponds to the expected absolute return of the portfolio Main challenges Non-linear objective function Multiobjective Problem Non-linear constraints Idea Evolve a set of Pareto optimal solutions, which are represented by the population of the evolutionary algorithm Sandra Paterlini 10

11 Multiobjective Portfolio Optimization Mean-VaR (1-α) Selection 4.50% 4.00% Monthly Expected Return 3.50% 3.00% 2.50% 2.00% 1.50% 1.00% Var95Opt MV(Var95) 0.50% 0.00% 0.00% 2.00% 4.00% 6.00% 8.00% 10.00% 12.00% Monthly Value-at-Risk Sandra Paterlini 11

12 EAs in Multiobjective Optimization Domination and Diversity preservation During selection between two individuals i and j select the one which is dominated or constrained-dominated by less other solutions if they are dominated by the same number of solutions then select the one with the larger distance value (i.e. crowding operator) Sandra Paterlini 12

13 EAs in Multiobjective Optimization Dominance Let F be a multiobjective minimization problem with p objectives f k with k = 1,..., p A candidate solution x i dominates x j if and only if k, f k (x i ) f k (x j ) l, f l (x i ) < f l (x j ) Sandra Paterlini 13

14 EAs in Multiobjective Optimization Determination of the non-dominated fronts f f 1 Sandra Paterlini 14

15 EAs in Multiobjective Optimization Determination of the non-dominated fronts f f 1 Sandra Paterlini 15

16 EAs in Multiobjective Optimization Determination of the non-dominated fronts f f 1 Sandra Paterlini 16

17 EAs in Multiobjective Optimization Determination of the non-dominated fronts f f 1 Sandra Paterlini 17

18 EAs in Multiobjective Optimization Determination of the non-dominated fronts f f 1 Sandra Paterlini 18

19 EAs in Multiobjective Optimization Determination of the non-dominated fronts f f 1 Sandra Paterlini 19

20 EAs in Multiobjective Optimization Determination of the non-dominated fronts f non-dominated fronts f 1 Sandra Paterlini 20

21 EAs in Multiobjective Optimization Diversity preservation for each solution calculate the cuboid distance, i.e., the mean of the lower and upper distance for each objective f i, to the nearest two solutions within the same front f s 1 s s dist( s ) ( ( ) ( ) ( ) ( ) ) 3 2 f1 s3 f1 s1 f2 s3 f2 s f 1 Sandra Paterlini 21

22 EAs in Multiobjective Optimization void MultiObjectiveEvolutionaryAlgorithm() { t=0; Initialize population P(t); // create random solutions Evaluate population P(t); // calculate fitnesses while (not termination condition){ t=t+1; Determination of the constrained non-dominated fronts { Calculate non-domination ranks Diversity preservation } Multi-objective fitness assignment Select next generation P(t) from P(t-1); Alter P(t); // Mutate and recombine genes Evaluate population P(t); // calculate fitnesses } } Sandra Paterlini 22

23 Multiobjective Portfolio Optimization Mean-VaR (1-α) Selection 4.50% 4.00% Monthly Expected Return 3.50% 3.00% 2.50% 2.00% 1.50% 1.00% Var95Opt MV(Var95) 0.50% 0.00% 0.00% 2.00% 4.00% 6.00% 8.00% 10.00% 12.00% Monthly Value-at-Risk Krink and Paterlini, 2009 Sandra Paterlini 23

24 Multiobjective Portfolio Optimization Main Challenges 4.00% 3.50% Monthly Portfolio Return 3.00% 2.50% 2.00% 1.50% QP NSGA-II DEMPO 1.00% 0.50% 0.00% 0.10% 0.20% 0.30% 0.40% 0.50% 0.60% 0.70% 0.80% 0.90% Monthly Portfolio Variance Krink and Paterlini, 2009 Sandra Paterlini 24

25 EAs in Multiobjective Optimization Main challenges Multiobjective problems: use the whole population to determine the Pareto front Diversity preservation Sharing versus Crowding Distance Measures Constraint-handling Parameter Tuning Statistical Analysis of Convergence Properties Performance criteria in MO Sandra Paterlini 25

26 EC in Finance Conclusions Hardware development, data availability and speed up methods support on-going research Financial industry shows a growing interest towards heuristic optimization methods Financial Portfolio Selection Option Pricing Model Calibration... Many financial problems can be effectively tackled by EC, as shown by many published papers and books Sandra Paterlini 26

27 EC in Finance Conclusions Many more will be published... Computational Statistics & Data Analysis 3rd Special Issue on OPTIMIZATION HEURISTICS IN ESTIMATION AND MODELLING PROBLEMS Submission deadline: January 15, 2011 Sandra Paterlini 27

28 References References Gilli, M. and E. Schumann, Heuristic Optimization in Financial Modelling, WP Lyra, M., J. Paha, S. Paterlini and P. Winker, in press, Optimization Heuristics for Determining Internal Rating Grading Scales, Computational Statistics & Data Analysis, doi: /j.csda Krink, T. and S. Paterlini, in press, Multiobjective Optimization using Differential Evolution for Real-World Portfolio Optimization, Computational Management, DOI /s Krink, T., S. Mittnik and S. Paterlini, 2009, Differential Evolution and Combinatorial Search for Constrained Index Tracking, Annals of Operation Research, 172, Krink, T., S. Paterlini and A. Resti, 2008, The optimal structure of PD buckets, Journal of Banking and Finance, 32, 10, Krink, T., S. Paterlini and A. Resti, 2007, Using Differential Evolution to improve the accuracy of bank rating systems, Computational Statistics & Data Analysis, Elsevier, 52/1, Sandra Paterlini 28

Pareto-optimal Nash equilibrium detection using an evolutionary approach

Pareto-optimal Nash equilibrium detection using an evolutionary approach Acta Univ. Sapientiae, Informatica, 4, 2 (2012) 237 246 Pareto-optimal Nash equilibrium detection using an evolutionary approach Noémi GASKÓ Babes-Bolyai University email: gaskonomi@cs.ubbcluj.ro Rodica

More information

Evolutionary Programming

Evolutionary Programming Evolutionary Programming Searching Problem Spaces William Power April 24, 2016 1 Evolutionary Programming Can we solve problems by mi:micing the evolutionary process? Evolutionary programming is a methodology

More information

10CS664: PATTERN RECOGNITION QUESTION BANK

10CS664: PATTERN RECOGNITION QUESTION BANK 10CS664: PATTERN RECOGNITION QUESTION BANK Assignments would be handed out in class as well as posted on the class blog for the course. Please solve the problems in the exercises of the prescribed text

More information

Intro, Graph and Search

Intro, Graph and Search GAI Questions Intro 1. How would you describe AI (generally), to not us? 2. Game AI is really about The I of I. Which is what? Supporting the P E which is all about making the game more enjoyable Doing

More information

Linear and Nonlinear Optimization

Linear and Nonlinear Optimization Linear and Nonlinear Optimization SECOND EDITION Igor Griva Stephen G. Nash Ariela Sofer George Mason University Fairfax, Virginia Society for Industrial and Applied Mathematics Philadelphia Contents Preface

More information

Cocktail Preference Prediction

Cocktail Preference Prediction Cocktail Preference Prediction Linus Meyer-Teruel, 1 Michael Parrott 1 1 Department of Computer Science, Stanford University, In this paper we approach the problem of rating prediction on data from a number

More information

A Monogenous MBO Approach to Satisfiability

A Monogenous MBO Approach to Satisfiability A Monogenous MBO Approach to Satisfiability Hussein A. Abbass University of New South Wales, School of Computer Science, UC, ADFA Campus, Northcott Drive, Canberra ACT, 2600, Australia, h.abbass@adfa.edu.au

More information

PROFICIENCY TESTING POLICY

PROFICIENCY TESTING POLICY Supersedes Prepared by: APPROVALS in this section Approved by: Date: Laboratory Director RECORD OF REVIEWS Date Signature Title Procedural Changes/Review VERSION HISTORY Revision # 0 Section #/Changes

More information

FACIAL COMPOSITE SYSTEM USING GENETIC ALGORITHM

FACIAL COMPOSITE SYSTEM USING GENETIC ALGORITHM RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA 2014 Volume 22, Special Number FACIAL COMPOSITE SYSTEM USING GENETIC ALGORITHM Barbora

More information

Project Report: Swarm Behavior and Control

Project Report: Swarm Behavior and Control 1 Project Report: Swarm Behavior and Control Xiaofeng Han Kevin Ridgley Scott Johnson Megan Keenan Swarm Team One University of Delaware {xiaofeng,kridgley,scottj,mkeenan}@udel.edu I. INTRODUCTION Aggregations

More information

How to Solve a Multicriterion Problem for Which Pareto Dominance Relationship Cannot Be Applied? A Case Study from Medicine

How to Solve a Multicriterion Problem for Which Pareto Dominance Relationship Cannot Be Applied? A Case Study from Medicine How to Solve a Multicriterion Problem for Which Pareto Dominance Relationship Cannot Be Applied? A Case Study from Medicine Crina Grosan 1,AjithAbraham 2, Stefan Tigan 3, and Tae-Gyu Chang 1 1 Department

More information

2012 Course : The Statistician Brain: the Bayesian Revolution in Cognitive Science

2012 Course : The Statistician Brain: the Bayesian Revolution in Cognitive Science 2012 Course : The Statistician Brain: the Bayesian Revolution in Cognitive Science Stanislas Dehaene Chair in Experimental Cognitive Psychology Lecture No. 4 Constraints combination and selection of a

More information

Study the Evolution of the Avian Influenza Virus

Study the Evolution of the Avian Influenza Virus Designing an Algorithm to Study the Evolution of the Avian Influenza Virus Arti Khana Mentor: Takis Benos Rachel Brower-Sinning Department of Computational Biology University of Pittsburgh Overview Introduction

More information

A bi-criteria evolutionary algorithm for a constrained multi-depot vehicle routing problem

A bi-criteria evolutionary algorithm for a constrained multi-depot vehicle routing problem A bi-criteria evolutionary algorithm for a constrained multi-depot vehicle routing problem The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story

More information

Prediction of heart disease using k-nearest neighbor and particle swarm optimization.

Prediction of heart disease using k-nearest neighbor and particle swarm optimization. Biomedical Research 2017; 28 (9): 4154-4158 ISSN 0970-938X www.biomedres.info Prediction of heart disease using k-nearest neighbor and particle swarm optimization. Jabbar MA * Vardhaman College of Engineering,

More information

Outlier Analysis. Lijun Zhang

Outlier Analysis. Lijun Zhang Outlier Analysis Lijun Zhang zlj@nju.edu.cn http://cs.nju.edu.cn/zlj Outline Introduction Extreme Value Analysis Probabilistic Models Clustering for Outlier Detection Distance-Based Outlier Detection Density-Based

More information

Introduction to Program Evaluation

Introduction to Program Evaluation Introduction to Program Evaluation Nirav Mehta Assistant Professor Economics Department University of Western Ontario January 22, 2014 Mehta (UWO) Program Evaluation January 22, 2014 1 / 28 What is Program

More information

Data Mining and Knowledge Discovery: Practice Notes

Data Mining and Knowledge Discovery: Practice Notes Data Mining and Knowledge Discovery: Practice Notes Petra Kralj Novak Petra.Kralj.Novak@ijs.si 2013/01/08 1 Keywords Data Attribute, example, attribute-value data, target variable, class, discretization

More information

The Classification Accuracy of Measurement Decision Theory. Lawrence Rudner University of Maryland

The Classification Accuracy of Measurement Decision Theory. Lawrence Rudner University of Maryland Paper presented at the annual meeting of the National Council on Measurement in Education, Chicago, April 23-25, 2003 The Classification Accuracy of Measurement Decision Theory Lawrence Rudner University

More information

Omicron ACO. A New Ant Colony Optimization Algorithm

Omicron ACO. A New Ant Colony Optimization Algorithm Omicron ACO. A New Ant Colony Optimization Algorithm Osvaldo Gómez Universidad Nacional de Asunción Centro Nacional de Computación Asunción, Paraguay ogomez@cnc.una.py and Benjamín Barán Universidad Nacional

More information

Programs for facies modeling with DMPE

Programs for facies modeling with DMPE Programs for facies modeling with DMPE Yupeng Li and Clayton V. Deutsch The programs needed for direct multivariate probability estimation (DMPE) are introduced in detail. The first program (TPcalc) is

More information

An Exact Algorithm for Side-Chain Placement in Protein Design

An Exact Algorithm for Side-Chain Placement in Protein Design S. Canzar 1 N. C. Toussaint 2 G. W. Klau 1 An Exact Algorithm for Side-Chain Placement in Protein Design 1 Centrum Wiskunde & Informatica, Amsterdam, The Netherlands 2 University of Tübingen, Center for

More information

Evaluating Classifiers for Disease Gene Discovery

Evaluating Classifiers for Disease Gene Discovery Evaluating Classifiers for Disease Gene Discovery Kino Coursey Lon Turnbull khc0021@unt.edu lt0013@unt.edu Abstract Identification of genes involved in human hereditary disease is an important bioinfomatics

More information

Remarks on Bayesian Control Charts

Remarks on Bayesian Control Charts Remarks on Bayesian Control Charts Amir Ahmadi-Javid * and Mohsen Ebadi Department of Industrial Engineering, Amirkabir University of Technology, Tehran, Iran * Corresponding author; email address: ahmadi_javid@aut.ac.ir

More information

Adaptive Testing With the Multi-Unidimensional Pairwise Preference Model Stephen Stark University of South Florida

Adaptive Testing With the Multi-Unidimensional Pairwise Preference Model Stephen Stark University of South Florida Adaptive Testing With the Multi-Unidimensional Pairwise Preference Model Stephen Stark University of South Florida and Oleksandr S. Chernyshenko University of Canterbury Presented at the New CAT Models

More information

Item Selection in Polytomous CAT

Item Selection in Polytomous CAT Item Selection in Polytomous CAT Bernard P. Veldkamp* Department of Educational Measurement and Data-Analysis, University of Twente, P.O.Box 217, 7500 AE Enschede, The etherlands 6XPPDU\,QSRO\WRPRXV&$7LWHPVFDQEHVHOHFWHGXVLQJ)LVKHU,QIRUPDWLRQ

More information

ENVIRONMENTAL REINFORCEMENT LEARNING: A Real-time Learning Architecture for Primitive Behavior Refinement

ENVIRONMENTAL REINFORCEMENT LEARNING: A Real-time Learning Architecture for Primitive Behavior Refinement ENVIRONMENTAL REINFORCEMENT LEARNING: A Real-time Learning Architecture for Primitive Behavior Refinement TaeHoon Anthony Choi, Eunbin Augustine Yim, and Keith L. Doty Machine Intelligence Laboratory Department

More information

Equilibrium Selection In Coordination Games

Equilibrium Selection In Coordination Games Equilibrium Selection In Coordination Games Presenter: Yijia Zhao (yz4k@virginia.edu) September 7, 2005 Overview of Coordination Games A class of symmetric, simultaneous move, complete information games

More information

BREAST CANCER EPIDEMIOLOGY MODEL:

BREAST CANCER EPIDEMIOLOGY MODEL: BREAST CANCER EPIDEMIOLOGY MODEL: Calibrating Simulations via Optimization Michael C. Ferris, Geng Deng, Dennis G. Fryback, Vipat Kuruchittham University of Wisconsin 1 University of Wisconsin Breast Cancer

More information

Inductive Cognitive Models and the Coevolution of Signaling

Inductive Cognitive Models and the Coevolution of Signaling of of Analytis Max Planck Institute for Human Development October 18, 2012 of 1 2 3 4 5 6 Appendix of It simply was not true that a world with almost perfect information was very similar to one in which

More information

Statistics S3 Advanced Level

Statistics S3 Advanced Level Paper Reference(s) 6691/01 Edexcel GCE Statistics S3 Advanced Level Monday 19 June 2006 Morning Time: 1 hour 30 minutes Materials required for examination Mathematical Formulae (Green) Items included with

More information

NMF-Density: NMF-Based Breast Density Classifier

NMF-Density: NMF-Based Breast Density Classifier NMF-Density: NMF-Based Breast Density Classifier Lahouari Ghouti and Abdullah H. Owaidh King Fahd University of Petroleum and Minerals - Department of Information and Computer Science. KFUPM Box 1128.

More information

A Learning Method of Directly Optimizing Classifier Performance at Local Operating Range

A Learning Method of Directly Optimizing Classifier Performance at Local Operating Range A Learning Method of Directly Optimizing Classifier Performance at Local Operating Range Lae-Jeong Park and Jung-Ho Moon Department of Electrical Engineering, Kangnung National University Kangnung, Gangwon-Do,

More information

Fitness. Phenotypic Plasticity. Generation

Fitness. Phenotypic Plasticity. Generation Interactions between Learning and Evolution: The Outstanding Strategy Generated by the Baldwin Effect Takaya Arita and Reiji Suzuki Graduate School of Human Informatics, Nagoya University Chikusa-ku, Nagoya

More information

Real-time computational attention model for dynamic scenes analysis

Real-time computational attention model for dynamic scenes analysis Computer Science Image and Interaction Laboratory Real-time computational attention model for dynamic scenes analysis Matthieu Perreira Da Silva Vincent Courboulay 19/04/2012 Photonics Europe 2012 Symposium,

More information

Athlete Monitoring Program For HP Development Athletes

Athlete Monitoring Program For HP Development Athletes Athlete Monitoring Program For HP Development Athletes Developed by Rowing Canada Aviron, LAST UPDATED: OCTOBER 27/2010 New information updated in this version has been highlighted in yellow CONTENTS Targeted

More information

Sexy Evolutionary Computation

Sexy Evolutionary Computation University of Coimbra Faculty of Science and Technology Department of Computer Sciences Final Report Sexy Evolutionary Computation José Carlos Clemente Neves jcneves@student.dei.uc.pt Advisor: Fernando

More information

DECISION ANALYSIS WITH BAYESIAN NETWORKS

DECISION ANALYSIS WITH BAYESIAN NETWORKS RISK ASSESSMENT AND DECISION ANALYSIS WITH BAYESIAN NETWORKS NORMAN FENTON MARTIN NEIL CRC Press Taylor & Francis Croup Boca Raton London NewYork CRC Press is an imprint of the Taylor Si Francis an Croup,

More information

Learning Classifier Systems (LCS/XCSF)

Learning Classifier Systems (LCS/XCSF) Context-Dependent Predictions and Cognitive Arm Control with XCSF Learning Classifier Systems (LCS/XCSF) Laurentius Florentin Gruber Seminar aus Künstlicher Intelligenz WS 2015/16 Professor Johannes Fürnkranz

More information

Empirical function attribute construction in classification learning

Empirical function attribute construction in classification learning Pre-publication draft of a paper which appeared in the Proceedings of the Seventh Australian Joint Conference on Artificial Intelligence (AI'94), pages 29-36. Singapore: World Scientific Empirical function

More information

User-Friendly Approach to Capacity Planning studies with Java Modelling Tools

User-Friendly Approach to Capacity Planning studies with Java Modelling Tools Politecnico di Milano EECS Dept. Milan, Italy User-Friendly Approach to Capacity Planning studies with Java Modelling Tools Marco Bertoli, Giuliano Casale, Giuseppe Serazzi SIMUTOOLS09 March 5th, 2009

More information

Improved Outer Approximation Methods for MINLP in Process System Engineering

Improved Outer Approximation Methods for MINLP in Process System Engineering Improved Outer Approximation Methods for MINLP in Process System Engineering Lijie Su, Lixin Tang, Ignacio E. Grossmann Department of Chemical Engineering, Carnegie Mellon University 1 Outline MINLP is

More information

Treatment Planning of Cancer Dendritic Cell Therapy Using Multi-Objective Optimization

Treatment Planning of Cancer Dendritic Cell Therapy Using Multi-Objective Optimization Treatment Planning of Cancer Dendritic Cell Therapy Using Multi-Objective Optimization K. Lakshmi Kiran*, S. Lakshminarayanan* *Department of Chemical and Biomolecular Engineering, National University

More information

An Introduction to Multiple Imputation for Missing Items in Complex Surveys

An Introduction to Multiple Imputation for Missing Items in Complex Surveys An Introduction to Multiple Imputation for Missing Items in Complex Surveys October 17, 2014 Joe Schafer Center for Statistical Research and Methodology (CSRM) United States Census Bureau Views expressed

More information

Artificial Intelligence Lecture 7

Artificial Intelligence Lecture 7 Artificial Intelligence Lecture 7 Lecture plan AI in general (ch. 1) Search based AI (ch. 4) search, games, planning, optimization Agents (ch. 8) applied AI techniques in robots, software agents,... Knowledge

More information

IN THE iterated prisoner s dilemma (IPD), two players

IN THE iterated prisoner s dilemma (IPD), two players IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 11, NO. 6, DECEMBER 2007 689 Multiple Choices and Reputation in Multiagent Interactions Siang Yew Chong, Member, IEEE, and Xin Yao, Fellow, IEEE Abstract

More information

Improving Envelopment in Data Envelopment Analysis by Means of Unobserved DMUs: An Application of Banking Industry

Improving Envelopment in Data Envelopment Analysis by Means of Unobserved DMUs: An Application of Banking Industry Journal of Quality Engineering and Production Optimization Vol. 1, No. 2, PP. 71-80, July Dec. 2015 Improving Envelopment in Data Envelopment Analysis by Means of Unobserved DMUs: An Application of Banking

More information

Some Regulatory Implications of Machine Learning Larry D. Wall Federal Reserve Bank of Atlanta

Some Regulatory Implications of Machine Learning Larry D. Wall Federal Reserve Bank of Atlanta Some Regulatory Implications of Machine Learning Larry D. Wall Federal Reserve Bank of Atlanta The views expressed here is the authors and not necessarily those of the Federal Reserve Bank of Atlanta,

More information

Aggregation and Diversification of Risks in the Solvency II Framework

Aggregation and Diversification of Risks in the Solvency II Framework Aggregation and Diversification of Risks in the Solvency II Framework Damir Filipović Vienna Institute of Finance University of Vienna and Vienna University of Economics and Business Administration Croatian

More information

Abstract. Introduction. a11111

Abstract. Introduction. a11111 RESEARCH ARTICLE How Are Mate Preferences Linked with Actual Mate Selection? Tests of Mate Preference Integration Algorithms Using Computer Simulations and Actual Mating Couples Daniel Conroy-Beam*, David

More information

Seamless Audio Splicing for ISO/IEC Transport Streams

Seamless Audio Splicing for ISO/IEC Transport Streams Seamless Audio Splicing for ISO/IEC 13818 Transport Streams A New Framework for Audio Elementary Stream Tailoring and Modeling Seyfullah Halit Oguz, Ph.D. and Sorin Faibish EMC Corporation Media Solutions

More information

Introductory Motor Learning and Development Lab

Introductory Motor Learning and Development Lab Introductory Motor Learning and Development Lab Laboratory Equipment & Test Procedures. Motor learning and control historically has built its discipline through laboratory research. This has led to the

More information

CS 4365: Artificial Intelligence Recap. Vibhav Gogate

CS 4365: Artificial Intelligence Recap. Vibhav Gogate CS 4365: Artificial Intelligence Recap Vibhav Gogate Exam Topics Search BFS, DFS, UCS, A* (tree and graph) Completeness and Optimality Heuristics: admissibility and consistency CSPs Constraint graphs,

More information

CHAPTER 4 RESULTS. In this chapter the results of the empirical research are reported and discussed in the following order:

CHAPTER 4 RESULTS. In this chapter the results of the empirical research are reported and discussed in the following order: 71 CHAPTER 4 RESULTS 4.1 INTRODUCTION In this chapter the results of the empirical research are reported and discussed in the following order: (1) Descriptive statistics of the sample; the extraneous variables;

More information

Figure 2: Power Angle (Relative) of Generators in Multi Generator Benchmark, What ETAP has shown in Validation Test Cases document is published in

Figure 2: Power Angle (Relative) of Generators in Multi Generator Benchmark, What ETAP has shown in Validation Test Cases document is published in Who are we? IPE () is a nonprofit organization passionate about the power engineering industry. Our main mandate is to test and expose the different issues and dysfunctions of different power system simulation

More information

Lecture 10: Learning Optimal Personalized Treatment Rules Under Risk Constraint

Lecture 10: Learning Optimal Personalized Treatment Rules Under Risk Constraint Lecture 10: Learning Optimal Personalized Treatment Rules Under Risk Constraint Introduction Consider Both Efficacy and Safety Outcomes Clinician: Complete picture of treatment decision making involves

More information

Using Genetic Algorithms to Optimise Rough Set Partition Sizes for HIV Data Analysis

Using Genetic Algorithms to Optimise Rough Set Partition Sizes for HIV Data Analysis Using Genetic Algorithms to Optimise Rough Set Partition Sizes for HIV Data Analysis Bodie Crossingham and Tshilidzi Marwala School of Electrical and Information Engineering, University of the Witwatersrand

More information

Figure 1: Power Angle (Relative) of Generators in Multi Generator Benchmark, Power System Control and Stability by Anderson and Fouad

Figure 1: Power Angle (Relative) of Generators in Multi Generator Benchmark, Power System Control and Stability by Anderson and Fouad Who are we? IPE () is a nonprofit organization passionate about the power engineering industry. Our main mandate is to test and expose the different issues and dysfunctions of different power system simulation

More information

Side-Chain Positioning CMSC 423

Side-Chain Positioning CMSC 423 Side-Chain Positioning CMSC 423 Protein Structure Backbone Protein Structure Backbone Side-chains Side-chain Positioning Given: - amino acid sequence - position of backbone in space Find best 3D positions

More information

Bayesian additive decision trees of biomarker by treatment interactions for predictive biomarkers detection and subgroup identification

Bayesian additive decision trees of biomarker by treatment interactions for predictive biomarkers detection and subgroup identification Bayesian additive decision trees of biomarker by treatment interactions for predictive biomarkers detection and subgroup identification Wei Zheng Sanofi-Aventis US Comprehend Info and Tech Talk outlines

More information

Enhance micro-blogging recommendations of posts with an homophily-based graph

Enhance micro-blogging recommendations of posts with an homophily-based graph Enhance micro-blogging recommendations of posts with an homophily-based graph Quentin Grossetti 1,2 Supervised by Cédric du Mouza 2, Camelia Constantin 1 and Nicolas Travers 2 1 LIP6 - Université Pierre

More information

Selection and Combination of Markers for Prediction

Selection and Combination of Markers for Prediction Selection and Combination of Markers for Prediction NACC Data and Methods Meeting September, 2010 Baojiang Chen, PhD Sarah Monsell, MS Xiao-Hua Andrew Zhou, PhD Overview 1. Research motivation 2. Describe

More information

UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Final, Fall 2014

UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Final, Fall 2014 UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Final, Fall 2014 Exam policy: This exam allows two one-page, two-sided cheat sheets (i.e. 4 sides); No other materials. Time: 2 hours. Be sure to write

More information

Modeling Sentiment with Ridge Regression

Modeling Sentiment with Ridge Regression Modeling Sentiment with Ridge Regression Luke Segars 2/20/2012 The goal of this project was to generate a linear sentiment model for classifying Amazon book reviews according to their star rank. More generally,

More information

Comparison of discrimination methods for the classification of tumors using gene expression data

Comparison of discrimination methods for the classification of tumors using gene expression data Comparison of discrimination methods for the classification of tumors using gene expression data Sandrine Dudoit, Jane Fridlyand 2 and Terry Speed 2,. Mathematical Sciences Research Institute, Berkeley

More information

BayesOpt: Extensions and applications

BayesOpt: Extensions and applications BayesOpt: Extensions and applications Javier González Masterclass, 7-February, 2107 @Lancaster University Agenda of the day 9:00-11:00, Introduction to Bayesian Optimization: What is BayesOpt and why it

More information

Colon cancer subtypes from gene expression data

Colon cancer subtypes from gene expression data Colon cancer subtypes from gene expression data Nathan Cunningham Giuseppe Di Benedetto Sherman Ip Leon Law Module 6: Applied Statistics 26th February 2016 Aim Replicate findings of Felipe De Sousa et

More information

A guide to using multi-criteria optimization (MCO) for IMRT planning in RayStation

A guide to using multi-criteria optimization (MCO) for IMRT planning in RayStation A guide to using multi-criteria optimization (MCO) for IMRT planning in RayStation By David Craft Massachusetts General Hospital, Department of Radiation Oncology Revised: August 30, 2011 Single Page Summary

More information

Learning to play Mario

Learning to play Mario 29 th Soar Workshop Learning to play Mario Shiwali Mohan University of Michigan, Ann Arbor 1 Outline Why games? Domain Approaches and results Issues with current design What's next 2 Why computer games?

More information

Complexities, Catastrophes and Cities: Emergency Dynamics in Varying Scenarios and Urban Topologies

Complexities, Catastrophes and Cities: Emergency Dynamics in Varying Scenarios and Urban Topologies Chapter 1 Complexities, Catastrophes and Cities: Emergency Dynamics in Varying Scenarios and Urban Topologies Giuseppe Narzisi, Venkatesh Mysore, Jeewoong Byeon and Bud Mishra Courant Institute of Mathematical

More information

Evolving biological systems: Evolutionary Pressure to Inefficiency

Evolving biological systems: Evolutionary Pressure to Inefficiency Evolving biological systems: Evolutionary Pressure to Inefficiency Dominique Chu 1 and David Barnes 1 1 School of Computing, University of Kent, CT 7NF, Canterbury dfc@kent.ac.uk Abstract The evolution

More information

CANCER is to be the leading cause of death throughout the

CANCER is to be the leading cause of death throughout the IEEE/ACM TRANSACTIONS ON COMPUTATIONAL BIOLOGY AND BIOINFORMATICS, VOL. 9, NO. 1, JANUARY/FEBRUARY 2012 169 Multiobjective Optimization Based-Approach for Discovering Novel Cancer Therapies Arthur W. Mahoney,

More information

Seminar Thesis: Efficient Planning under Uncertainty with Macro-actions

Seminar Thesis: Efficient Planning under Uncertainty with Macro-actions Seminar Thesis: Efficient Planning under Uncertainty with Macro-actions Ragnar Mogk Department of Computer Science Technische Universität Darmstadt ragnar.mogk@stud.tu-darmstadt.de 1 Introduction This

More information

ALTHOUGH evolutionary programming (EP) was first. Evolutionary Programming Made Faster

ALTHOUGH evolutionary programming (EP) was first. Evolutionary Programming Made Faster 82 IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 3, NO. 2, JULY 1999 Evolutionary Programming Made Faster Xin Yao, Senior Member, IEEE, Yong Liu, Student Member, IEEE, and Guangming Lin Abstract

More information

On Algorithms and Fairness

On Algorithms and Fairness On Algorithms and Fairness Jon Kleinberg Cornell University Includes joint work with Sendhil Mullainathan, Manish Raghavan, and Maithra Raghu Forming Estimates of Future Performance Estimating probability

More information

Genetically Generated Neural Networks I: Representational Effects

Genetically Generated Neural Networks I: Representational Effects Boston University OpenBU Cognitive & Neural Systems http://open.bu.edu CAS/CNS Technical Reports 1992-02 Genetically Generated Neural Networks I: Representational Effects Marti, Leonardo Boston University

More information

An Adaptive Multimeme Algorithm for Designing HIV Multidrug Therapies

An Adaptive Multimeme Algorithm for Designing HIV Multidrug Therapies 1 An Adaptive Multimeme Algorithm for Designing HIV Multidrug Therapies Ferrante Neri, Student Member, IEEE, Jari Toivanen, Giuseppe L. Cascella, Member, IEEE,Yew-Soon Ong, Member, IEEE Department of Mathematical

More information

RetinotopicNET: An Efficient Simulator for Retinotopic Visual Architectures.

RetinotopicNET: An Efficient Simulator for Retinotopic Visual Architectures. RetinotopicNET: An Efficient Simulator for Retinotopic Visual Architectures. Dipl. Eng. RAUL C. MUREŞAN Nivis Research Gh. Bilascu, Nr. 85, Cluj-Napoca, Cod 3400 ROMANIA raulmuresan@personal.ro Abstract.

More information

Mean Absolute Deviation (MAD) Statistics 7.SP.3, 7.SP.4

Mean Absolute Deviation (MAD) Statistics 7.SP.3, 7.SP.4 Mean Absolute Deviation (MAD) Statistics 7.SP.3, 7.SP.4 Review Let s Begin The Mean Absolute Deviation (MAD) of a set of data. is the average distance between each data value and the mean. 1. Find the

More information

1 Introduction. st0020. The Stata Journal (2002) 2, Number 3, pp

1 Introduction. st0020. The Stata Journal (2002) 2, Number 3, pp The Stata Journal (22) 2, Number 3, pp. 28 289 Comparative assessment of three common algorithms for estimating the variance of the area under the nonparametric receiver operating characteristic curve

More information

Detection of Heart Disease using Binary Particle Swarm Optimization

Detection of Heart Disease using Binary Particle Swarm Optimization Proceedings of the Federated Conference on Computer Science and Information Systems pp. 177 182 ISBN 978-83-60810-51-4 Detection of Heart Disease using Binary Particle Swarm Optimization Mona Nagy Elbedwehy

More information

Evolutionary game theory and cognition

Evolutionary game theory and cognition Evolutionary game theory and cognition Artem Kaznatcheev School of Computer Science & Department of Psychology McGill University November 15, 2012 Artem Kaznatcheev (McGill University) Evolutionary game

More information

Patterns of hemagglutinin evolution and the epidemiology of influenza

Patterns of hemagglutinin evolution and the epidemiology of influenza 2 8 US Annual Mortality Rate All causes Infectious Disease Patterns of hemagglutinin evolution and the epidemiology of influenza DIMACS Working Group on Genetics and Evolution of Pathogens, 25 Nov 3 Deaths

More information

Bayesian (Belief) Network Models,

Bayesian (Belief) Network Models, Bayesian (Belief) Network Models, 2/10/03 & 2/12/03 Outline of This Lecture 1. Overview of the model 2. Bayes Probability and Rules of Inference Conditional Probabilities Priors and posteriors Joint distributions

More information

cloglog link function to transform the (population) hazard probability into a continuous

cloglog link function to transform the (population) hazard probability into a continuous Supplementary material. Discrete time event history analysis Hazard model details. In our discrete time event history analysis, we used the asymmetric cloglog link function to transform the (population)

More information

State Estimation: Particle Filter

State Estimation: Particle Filter State Estimation: Particle Filter Daniel Seliger HAUPT-/ BACHELOR- SEMINAR ADAPTIVE 28.06.2012 SYSTEME PST PROF. DR. WIRSING 14. JUNI 2009 VORNAME NAME Overview 1. Repitition: Bayesian Filtering 2. Particle

More information

Discussion Meeting for MCP-Mod Qualification Opinion Request. Novartis 10 July 2013 EMA, London, UK

Discussion Meeting for MCP-Mod Qualification Opinion Request. Novartis 10 July 2013 EMA, London, UK Discussion Meeting for MCP-Mod Qualification Opinion Request Novartis 10 July 2013 EMA, London, UK Attendees Face to face: Dr. Frank Bretz Global Statistical Methodology Head, Novartis Dr. Björn Bornkamp

More information

Lec 02: Estimation & Hypothesis Testing in Animal Ecology

Lec 02: Estimation & Hypothesis Testing in Animal Ecology Lec 02: Estimation & Hypothesis Testing in Animal Ecology Parameter Estimation from Samples Samples We typically observe systems incompletely, i.e., we sample according to a designed protocol. We then

More information

Reactive agents and perceptual ambiguity

Reactive agents and perceptual ambiguity Major theme: Robotic and computational models of interaction and cognition Reactive agents and perceptual ambiguity Michel van Dartel and Eric Postma IKAT, Universiteit Maastricht Abstract Situated and

More information

Dynamic Control Models as State Abstractions

Dynamic Control Models as State Abstractions University of Massachusetts Amherst From the SelectedWorks of Roderic Grupen 998 Dynamic Control Models as State Abstractions Jefferson A. Coelho Roderic Grupen, University of Massachusetts - Amherst Available

More information

Temporal Analysis of Online Social Graph by Home Location

Temporal Analysis of Online Social Graph by Home Location Temporal Analysis of Online Social Graph by Home Location Shiori Hironaka Mitsuo Yoshida Kyoji Umemura Toyohashi University of Technology Aichi, Japan s143369@edu.tut.ac.jp, yoshida@cs.tut.ac.jp, umemura@tut.jp

More information

The Role of Implicit Motives in Strategic Decision-Making: Computational Models of Motivated Learning and the Evolution of Motivated Agents

The Role of Implicit Motives in Strategic Decision-Making: Computational Models of Motivated Learning and the Evolution of Motivated Agents Games 2015, 6, 604-636; doi:10.3390/g6040604 Article OPEN ACCESS games ISSN 2073-4336 www.mdpi.com/journal/games The Role of Implicit Motives in Strategic Decision-Making: Computational Models of Motivated

More information

VIDEO SURVEILLANCE AND BIOMEDICAL IMAGING Research Activities and Technology Transfer at PAVIS

VIDEO SURVEILLANCE AND BIOMEDICAL IMAGING Research Activities and Technology Transfer at PAVIS VIDEO SURVEILLANCE AND BIOMEDICAL IMAGING Research Activities and Technology Transfer at PAVIS Samuele Martelli, Alessio Del Bue, Diego Sona, Vittorio Murino Istituto Italiano di Tecnologia (IIT), Genova

More information

Empowerment: A Universal Agent-Centric Measure of Control

Empowerment: A Universal Agent-Centric Measure of Control Empowerment: A Universal Agent-Centric Measure of Control Alexander S. Klyubin, Daniel Polani, and Chrystopher L. Nehaniv Adaptive Systems and Algorithms Research Groups School of Computer Science, University

More information

An Evolutionary Approach to Tower of Hanoi Problem

An Evolutionary Approach to Tower of Hanoi Problem An Evolutionary Approach to Tower of Hanoi Problem Jie Li, Rui Shen Department of Computer Engineering Shandong Aerospace Electro-Technology Institute Yantai, China jie_yi_ehw@163.com Abstract:The Tower

More information

Diabetes Diagnosis through the Means of a Multimodal Evolutionary Algorithm

Diabetes Diagnosis through the Means of a Multimodal Evolutionary Algorithm Diabetes Diagnosis through the Means of a Multimodal Evolutionary Algorithm Cătălin Stoean 1, Ruxandra Stoean 2, Mike Preuss 3 and D. Dumitrescu 4 1 University of Craiova Faculty of Mathematics and Computer

More information

Models of Cooperation in Social Systems

Models of Cooperation in Social Systems Models of Cooperation in Social Systems Hofstadter s Luring Lottery From Hofstadter s Metamagical Themas column in Scientific American: "This brings me to the climax of this column: the announcement of

More information

Winner s Report: KDD CUP Breast Cancer Identification

Winner s Report: KDD CUP Breast Cancer Identification Winner s Report: KDD CUP Breast Cancer Identification ABSTRACT Claudia Perlich, Prem Melville, Yan Liu, Grzegorz Świrszcz, Richard Lawrence IBM T.J. Watson Research Center Yorktown Heights, NY 10598 {perlich,pmelvil,liuya}@us.ibm.com

More information

Introduction to Computational Neuroscience

Introduction to Computational Neuroscience Introduction to Computational Neuroscience Lecture 5: Data analysis II Lesson Title 1 Introduction 2 Structure and Function of the NS 3 Windows to the Brain 4 Data analysis 5 Data analysis II 6 Single

More information