Chapter 11: Artificial Intelligence

Size: px
Start display at page:

Download "Chapter 11: Artificial Intelligence"

Transcription

1 Chapter 11: Artificial Intelligence Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Presentation files modified by Farn Wang Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

2 Chapter 11: Artificial Intelligence 11.1 Intelligence and Machines 11.2 Perception 11.3 Reasoning 11.4 Additional Areas of Research 11.5 Artificial Neural Networks 11.6 Robotics 11.7 Considering the Consequences Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-2

3 Intelligent Agents Agent: A device that responds to stimuli from its environment Sensors Actuators Much of the research in artificial intelligence can be viewed in the context of building agents that behave intelligently Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-3

4 Artificial intelligence - coining the buzzword John McCarthy, Dartmouth College summer, 1956 suggested a study of artificial intelligence be carried out to explore the conjecture that every aspect of learning or any other feature of intelligence can in principle be so precisely described that a machine can be made to simulate it. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-4

5 Levels of Intelligent Behavior Reflex: actions are predetermined responses to the input data Is kick on knocking intelligent? Is swimming intelligent? Is bike riding intelligent? More intelligent behavior requires knowledge of the environment and involves such activities as: Goal seeking Learning Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-5

6 Intelligence in reflexion Look at the center wheel. Tell me what the other wheels are doing? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-6

7 Intelligence in reflexion Which cycles are rotating? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-7

8 Intelligence in reflexion Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-8

9 Intelligence in reflexion What is the color of the empty dot? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-9

10 Intelligence in reflexion Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-10

11 Intelligence in reflexion Which rectangle is taller? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-11

12 Intelligence in reflexion Which rectangle is taller? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-12

13 What is intelligence? It is needed in solving difficult problems with no guaranteed solutions. It cannot be prescribed as a fixed set of rules. It relies on common senses. It must be adaptive with learning capabilities. It works most of the time, but may fail occasionally. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-13

14 The eight-puzzle - a game needs multitudes of intelligence Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-14

15 Our puzzle-solving machine Taking photos of the puzzle. Recognize the configuration of the puzzle. Compute the next move. Move the tiles. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-15

16 Approaches to Research in Artificial Intelligence Engineering track Performance oriented Theoretical track Simulation oriented Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-16

17 Turing Test Test setup: Human interrogator communicates with test subject by typewriter. Test: Can the human interrogator distinguish whether the test subject is human or machine? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-17

18 Techniques for Understanding Images Template matching Two steps approach: Image processing edge enhancement region finding smoothing Image analysis motion detection face recognization Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-18

19 Techniques for Understanding Images for the puzzle Template matching 3-D pattern matching is difficult. restrictive and difficult to scale! Two steps approach: Image processing Image analysis to recognize a tile with different focal lengths and angles. to recognize a number with various fonts and hand writings. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-19

20 Language Processing Syntactic Analysis Semantic Analysis knowledge representation knowledge retrieval Contextual Analysis interpretation of sentences according to contexts common senses Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-20

21 Language Processing Syntactic Analysis Cinderella had a ball. subject verb object. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-21

22 Language Processing Syntactic Analysis subject? object? Stampeding cattle can be dangerous. subject? verb Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-22

23 Language Processing Semantic Analysis Mary gave John a birthday card. John got a birthday card from Mary. knowledge representation how to represent the true meaning? information retrieval key words? information extraction frames, templates? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-23

24 A semantic net Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-24

25 Language Processing Contextual Analysis interpretation of sentences according to contexts Cinderella had a ball. Do you know what time it is? common senses Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-25

26 Production Systems (Expert systems) Components 1. Collection of states Start (or initial) state Goal state (or states) 2. Collection of productions: rules or moves Each production may have preconditions 3. Control system: decides which production to apply next Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-26

27 Production Systems (Expert systems) Components 1. Collection of states 2. Collection of productions: rules or moves 3. Control system: decides which production to apply next genetic programming, neural networks, ant intelligence, fuzzy logics, non-monotonic logics Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-27

28 Reasoning by Searching State Graph: All states and productions Search Tree: A record of state transitions explored while searching for a goal state Breadth-first search Depth-first search Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-28

29 A small portion of the eight-puzzle s state graph in backward reasoning for breadth-first search Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-29

30 A small portion of the eight-puzzle s state graph in backward reasoning for depth-first search Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-30

31 Deductive reasoning in the context of a production system Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-31

32 An unsolved eight-puzzle Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-32

33 A sample search tree - breadth-first search Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-33

34 A sample search tree - depth-first search Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-34

35 Productions stacked for later execution - as a log Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-35

36 Heuristic Strategies Heuristic: A rule of thumb for making decisions Requirements for good heuristics Must be easier to compute than a complete solution Must provide a reasonable estimate of proximity to a goal Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-36

37 An unsolved eight-puzzle Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-37

38 An algorithm for a control system using heuristics Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-38

39 The beginnings of our heuristic search Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-39

40 Figure The search tree after two passes Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-40

41 The search tree after three passes Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-41

42 The complete search tree formed by our heuristic system Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-42

43 Handling Real-World Knowledge Representation and storage Accessing relevant information Meta-Reasoning Closed-World Assumption Frame problem from animation how to move a table with the knowledge that the glass on the table could fall and break. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-43

44 Learning Imitation Supervised Training Reinforcement Evolutionary Techniques Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-44

45 Artificial Neural Networks Artificial Neuron Each input is multiplied by a weighting factor. Output is 1 if sum of weighted inputs exceeds the threshold value; 0 otherwise. Network is programmed by adjusting weights using feedback from examples. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-45

46 Neural networks Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-46

47 A neuron in a living biological system Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-47

48 Neural networks Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-48

49 Neural network configurations Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-49

50 The activities within a processing unit Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-50

51 Representation of a processing unit Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-51

52 A neural network with two different programs Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-52

53 An artificial neural network Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-53

54 Training an artificial neural network Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-54

55 Training an artificial neural network (continued) Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-55

56 Training an artificial neural network (continued) Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-56

57 Training an artificial neural network (continued) Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-57

58 The structure of ALVINN - Autonomous Land Vehicle in a Neural Net Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-58

59 Associative Memory Associative memory: The retrieval of information relevant to the information at hand One direction of research seeks to build associative memory using neural networks that when given a partial pattern, transition themselves to a completed pattern. Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-59

60 An artificial neural network implementing an associative memory Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-60

61 The steps leading to a stable configuration Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-61

62 Robotics Truly autonomous robots require progress in perception and reasoning. Major advances being made in mobility Plan development versus reactive responses Evolutionary robotics Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-62

63 Issues Raised by Artificial Intelligence When should a computer s decision be trusted over a human s? If a computer can do a job better than a human, when should a human do the job anyway? What would be the social impact if computer intelligence surpasses that of many humans? Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 11-63

Chapter 5: Algorithms

Chapter 5: Algorithms Chapter 5: Algorithms Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Presentation files modified by Farn Wang Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

More information

The Software Engineering Discipline. Computer Aided Software Engineering (CASE) tools. Chapter 7: Software Engineering

The Software Engineering Discipline. Computer Aided Software Engineering (CASE) tools. Chapter 7: Software Engineering Chapter 7: Software Engineering Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Chapter 7: Software Engineering 7.1 The Software Engineering Discipline 7.2 The Software Life Cycle 7.3

More information

Basic Data Structures. Figure 8.1 Lists, stacks, and queues. Terminology for Stacks. Terminology for Lists. Chapter 8: Data Abstractions

Basic Data Structures. Figure 8.1 Lists, stacks, and queues. Terminology for Stacks. Terminology for Lists. Chapter 8: Data Abstractions Chapter 8: Data Abstractions Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Chapter 8: Data Abstractions 8.1 Data Structure Fundamentals 8.2 Implementing Data Structures 8.3 A Short

More information

Plan for today. What is (Artificial) Intelligence? What is (Artificial) Intelligence?

Plan for today. What is (Artificial) Intelligence? What is (Artificial) Intelligence? Plan for today EDA132: Applied Artificial Intelligence or TAI: Tillämpad Artificiell Intelligens Jacek Malec Dept. of Computer Science, Lund University, Sweden January 18th, 2017 Administrative stuff Brief

More information

Introduction. Learning Objectives. Learning Objectives. Economics Today Twelfth Edition. Chapter 12 Consumption, Income, and the Multiplier

Introduction. Learning Objectives. Learning Objectives. Economics Today Twelfth Edition. Chapter 12 Consumption, Income, and the Multiplier Roger LeRoy Miller Economics Today Twelfth Edition Chapter 12 Consumption, Income, and the Multiplier Introduction Consumption spending by households is the largest component of U.S. GDP. To the extent

More information

Bits and Bit Patterns. Chapter 1: Data Storage (continued) Chapter 1: Data Storage

Bits and Bit Patterns. Chapter 1: Data Storage (continued) Chapter 1: Data Storage Chapter 1: Data Storage Computer Science: An Overview by J. Glenn Brookshear Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns

More information

College of Applied Business (CAB)

College of Applied Business (CAB) BIM / Fifth Semester / ITC 221: Computer Graphics Brief Answer Questions. [10 1=10] 1. What do you understand by the term retrace procedure? 2. Which algorithm would you prefer to draw a line and why?

More information

Plan for today. What is (Artificial) Intelligence? What is Artificial Intelligence?

Plan for today. What is (Artificial) Intelligence? What is Artificial Intelligence? Plan for today EDAF70: Applied Artificial Intelligence or TAI: Tillämpad Artificiell Intelligens Jacek Malec Dept. of Computer Science, Lund University, Sweden January 17th, 2018 Administrative stuff Brief

More information

Role of soft computing techniques in predicting stock market direction

Role of soft computing techniques in predicting stock market direction REVIEWS Role of soft computing techniques in predicting stock market direction Panchal Amitkumar Mansukhbhai 1, Dr. Jayeshkumar Madhubhai Patel 2 1. Ph.D Research Scholar, Gujarat Technological University,

More information

Chapter 1: Data Storage

Chapter 1: Data Storage Chapter 1: Data Storage Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Presentation files modified by Farn Wang Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

More information

ANN Robot Energy Modeling

ANN Robot Energy Modeling IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 11, Issue 4 Ver. III (Jul. Aug. 2016), PP 66-81 www.iosrjournals.org ANN Robot Energy Modeling

More information

Implementation of Classifiers for Choosing Insurance Policy Using Decision Trees: A Case Study

Implementation of Classifiers for Choosing Insurance Policy Using Decision Trees: A Case Study Implementation of Classifiers for Choosing Insurance Policy Using Decision Trees: A Case Study CHIN-SHENG HUANG 1, YU-JU LIN, CHE-CHERN LIN 1: Department and Graduate Institute of Finance National Yunlin

More information

Statistical and Machine Learning Approach in Forex Prediction Based on Empirical Data

Statistical and Machine Learning Approach in Forex Prediction Based on Empirical Data Statistical and Machine Learning Approach in Forex Prediction Based on Empirical Data Sitti Wetenriajeng Sidehabi Department of Electrical Engineering Politeknik ATI Makassar Makassar, Indonesia tenri616@gmail.com

More information

SpringerBriefs in Applied Sciences and Technology

SpringerBriefs in Applied Sciences and Technology SpringerBriefs in Applied Sciences and Technology Computational Intelligence Series editor Janusz Kacprzyk, Polish Academy of Sciences, Systems Research Institute, Warsaw, Poland The series Studies in

More information

Price Pattern Detection using Finite State Machines with Fuzzy Transitions

Price Pattern Detection using Finite State Machines with Fuzzy Transitions Price Pattern Detection using Finite State Machines with Fuzzy Transitions Kraimon Maneesilp Science and Technology Faculty Rajamangala University of Technology Thanyaburi Pathumthani, Thailand e-mail:

More information

Abstract Making good predictions for stock prices is an important task for the financial industry. The way these predictions are carried out is often

Abstract Making good predictions for stock prices is an important task for the financial industry. The way these predictions are carried out is often Abstract Making good predictions for stock prices is an important task for the financial industry. The way these predictions are carried out is often by using artificial intelligence that can learn from

More information

Understanding neural networks

Understanding neural networks Machine Learning Neural Networks Understanding neural networks An Artificial Neural Network (ANN) models the relationship between a set of input signals and an output signal using a model derived from

More information

Backpropagation and Recurrent Neural Networks in Financial Analysis of Multiple Stock Market Returns

Backpropagation and Recurrent Neural Networks in Financial Analysis of Multiple Stock Market Returns Backpropagation and Recurrent Neural Networks in Financial Analysis of Multiple Stock Market Returns Jovina Roman and Akhtar Jameel Department of Computer Science Xavier University of Louisiana 7325 Palmetto

More information

A Review of Artificial Neural Network Applications in Control. Chart Pattern Recognition

A Review of Artificial Neural Network Applications in Control. Chart Pattern Recognition A Review of Artificial Neural Network Applications in Control Chart Pattern Recognition M. Perry and J. Pignatiello Department of Industrial Engineering FAMU - FSU College of Engineering 2525 Pottsdamer

More information

Neural Network Prediction of Stock Price Trend Based on RS with Entropy Discretization

Neural Network Prediction of Stock Price Trend Based on RS with Entropy Discretization 2017 International Conference on Materials, Energy, Civil Engineering and Computer (MATECC 2017) Neural Network Prediction of Stock Price Trend Based on RS with Entropy Discretization Huang Haiqing1,a,

More information

An Improved Approach for Business & Market Intelligence using Artificial Neural Network

An Improved Approach for Business & Market Intelligence using Artificial Neural Network Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

5/17/2009. Designing a Spreadsheet. The Trip. Design Guidelines. Chapter 15: "What if" Thinking Helps: Advanced Spreadsheets for Planning

5/17/2009. Designing a Spreadsheet. The Trip. Design Guidelines. Chapter 15: What if Thinking Helps: Advanced Spreadsheets for Planning Chapter 15: "What if" Thinking Helps: Advanced Spreadsheets for Planning Designing a Spreadsheet Fluency with Information Technology Third Edition by Lawrence Snyder When a spreadsheet is used repeatedly,

More information

Alternate Models for Forecasting Hedge Fund Returns

Alternate Models for Forecasting Hedge Fund Returns University of Rhode Island DigitalCommons@URI Senior Honors Projects Honors Program at the University of Rhode Island 2011 Alternate Models for Forecasting Hedge Fund Returns Michael A. Holden Michael

More information

Chapter 1: Data Storage

Chapter 1: Data Storage Chapter 1: Data Storage Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1: Data Storage 1.1 Bits and

More information

Logistics. CS 473: Artificial Intelligence. Markov Decision Processes. PS 2 due today Midterm in one week

Logistics. CS 473: Artificial Intelligence. Markov Decision Processes. PS 2 due today Midterm in one week CS 473: Artificial Intelligence Markov Decision Processes Dan Weld University of Washington [Slides originally created by Dan Klein & Pieter Abbeel for CS188 Intro to AI at UC Berkeley. All CS188 materials

More information

Stock Market Prediction System

Stock Market Prediction System Stock Market Prediction System W.N.N De Silva 1, H.M Samaranayaka 2, T.R Singhara 3, D.C.H Wijewardana 4. Sri Lanka Institute of Information Technology, Malabe, Sri Lanka. { 1 nathashanirmani55, 2 malmisamaranayaka,

More information

Artificial Intelligence:

Artificial Intelligence: Artificial Intelligence: Changing the Landscape of Due Diligence and Monitoring Exiger Brendan Galla Chief Product Officer LexisNexis Pawana Burlakoti Global Product Manager sig.org/summit Artificial Intelligence;

More information

FE501 Stochastic Calculus for Finance 1.5:0:1.5

FE501 Stochastic Calculus for Finance 1.5:0:1.5 Descriptions of Courses FE501 Stochastic Calculus for Finance 1.5:0:1.5 This course introduces martingales or Markov properties of stochastic processes. The most popular example of stochastic process is

More information

Dr. P. O. Asagba Computer Science Department, Faculty of Science, University of Port Harcourt, Port Harcourt, PMB 5323, Choba, Nigeria

Dr. P. O. Asagba Computer Science Department, Faculty of Science, University of Port Harcourt, Port Harcourt, PMB 5323, Choba, Nigeria PREDICTING THE NIGERIAN STOCK MARKET USING ARTIFICIAL NEURAL NETWORK S. Neenwi Computer Science Department, Rivers State Polytechnic, Bori, PMB 20, Rivers State, Nigeria. Dr. P. O. Asagba Computer Science

More information

Markov Decision Processes

Markov Decision Processes Markov Decision Processes Robert Platt Northeastern University Some images and slides are used from: 1. CS188 UC Berkeley 2. AIMA 3. Chris Amato Stochastic domains So far, we have studied search Can use

More information

(NASDAQ: HIMX) Himax Technologies. Bullish. Investment Highlights

(NASDAQ: HIMX) Himax Technologies. Bullish. Investment Highlights (NASDAQ: HIMX) Bullish Overview Recent Price $8.63 52 Week Range $4.76 - $16.15 1 Month Range $8.07 - $12.19 Avg Daily Volume 6606645.0 PE Ratio 25.36 Earnings Per Share Year EPS 2014(E) $0.36 Capitalization

More information

Stock Price Prediction using Recurrent Neural Network (RNN) Algorithm on Time-Series Data

Stock Price Prediction using Recurrent Neural Network (RNN) Algorithm on Time-Series Data Stock Price Prediction using Recurrent Neural Network (RNN) Algorithm on Time-Series Data Israt Jahan Department of Computer Science and Operations Research North Dakota State University Fargo, ND 58105

More information

APPLICATION OF ARTIFICIAL NEURAL NETWORK SUPPORTING THE PROCESS OF PORTFOLIO MANAGEMENT IN TERMS OF TIME INVESTMENT ON THE WARSAW STOCK EXCHANGE

APPLICATION OF ARTIFICIAL NEURAL NETWORK SUPPORTING THE PROCESS OF PORTFOLIO MANAGEMENT IN TERMS OF TIME INVESTMENT ON THE WARSAW STOCK EXCHANGE QUANTITATIVE METHODS IN ECONOMICS Vol. XV, No. 2, 2014, pp. 307 316 APPLICATION OF ARTIFICIAL NEURAL NETWORK SUPPORTING THE PROCESS OF PORTFOLIO MANAGEMENT IN TERMS OF TIME INVESTMENT ON THE WARSAW STOCK

More information

AP Psychology. Units 1 & 2 History of Psychology and Research Lesson Plans. Date Topic Classwork Homework

AP Psychology. Units 1 & 2 History of Psychology and Research Lesson Plans. Date Topic Classwork Homework Units 1 & 2 History of Psychology and Research August 21st Pre Test Pre Test Pre Test August 22nd Pre Test Hand out Vocabulary Read and Take Notes Modules 1 & 2 Approaches Worksheet Read and Take Notes

More information

SURVEY OF MACHINE LEARNING TECHNIQUES FOR STOCK MARKET ANALYSIS

SURVEY OF MACHINE LEARNING TECHNIQUES FOR STOCK MARKET ANALYSIS International Journal of Computer Engineering and Applications, Volume XI, Special Issue, May 17, www.ijcea.com ISSN 2321-3469 SURVEY OF MACHINE LEARNING TECHNIQUES FOR STOCK MARKET ANALYSIS Sumeet Ghegade

More information

(OTC: VNTH) Bullish. Vantage Health. Investment Highlights

(OTC: VNTH) Bullish. Vantage Health. Investment Highlights (OTC: VNTH) Bullish Vantage Health Overview Recent Price $0.12 52 Week Range $.0012- $0.16 1 Month Range $0.10 - $0.15 Avg Daily Volume 165,215 PE Ratio n/a Earnings Per Share Year EPS 2014(E) n/a Capitalization

More information

Agent-Based Simulation of N-Person Games with Crossing Payoff Functions

Agent-Based Simulation of N-Person Games with Crossing Payoff Functions Agent-Based Simulation of N-Person Games with Crossing Payoff Functions Miklos N. Szilagyi Iren Somogyi Department of Electrical and Computer Engineering, University of Arizona, Tucson, AZ 85721 We report

More information

Advanced analytics and the future: Insurers boldly explore new frontiers. 2017/2018 P&C Insurance Advanced Analytics Survey Results Summary (Canada)

Advanced analytics and the future: Insurers boldly explore new frontiers. 2017/2018 P&C Insurance Advanced Analytics Survey Results Summary (Canada) Advanced analytics and the future: Insurers boldly explore new frontiers 2017/2018 P&C Insurance Advanced Analytics Survey Results Summary (Canada) Introduction: Insurers boldly explore new analytics frontiers

More information

The future of operational risk in financial services A new approach to operational risk capital management

The future of operational risk in financial services A new approach to operational risk capital management The future of operational risk in financial services A new approach to operational risk capital management 02 The future of operational risk in financial services A new approach to operational risk capital

More information

K-12 Educational Technology Standards

K-12 Educational Technology Standards K-12 Educational Technology Standards Adapted from the National Educational Technology Standards for Students Bremen Public Schools Russ Mikel, Superintendent June 2010 Creativity and Innovation Students

More information

Applications of Neural Networks in Stock Market Prediction

Applications of Neural Networks in Stock Market Prediction Applications of Neural Networks in Stock Market Prediction -An Approach Based Analysis Shiv Kumar Goel 1, Bindu Poovathingal 2, Neha Kumari 3 1Asst. Professor, Vivekanand Education Society Institute of

More information

Bidding Languages. Noam Nissan. October 18, Shahram Esmaeilsabzali. Presenter:

Bidding Languages. Noam Nissan. October 18, Shahram Esmaeilsabzali. Presenter: Bidding Languages Noam Nissan October 18, 2004 Presenter: Shahram Esmaeilsabzali Outline 1 Outline The Problem 1 Outline The Problem Some Bidding Languages(OR, XOR, and etc) 1 Outline The Problem Some

More information

The use of artificial neural network in predicting bankruptcy and its comparison with genetic algorithm in firms accepted in Tehran Stock Exchange

The use of artificial neural network in predicting bankruptcy and its comparison with genetic algorithm in firms accepted in Tehran Stock Exchange Journal of Novel Applied Sciences Available online at www.jnasci.org 2014 JNAS Journal-2014-3-2/151-160 ISSN 2322-5149 2014 JNAS The use of artificial neural network in predicting bankruptcy and its comparison

More information

HKUST CSE FYP , TEAM RO4 OPTIMAL INVESTMENT STRATEGY USING SCALABLE MACHINE LEARNING AND DATA ANALYTICS FOR SMALL-CAP STOCKS

HKUST CSE FYP , TEAM RO4 OPTIMAL INVESTMENT STRATEGY USING SCALABLE MACHINE LEARNING AND DATA ANALYTICS FOR SMALL-CAP STOCKS HKUST CSE FYP 2017-18, TEAM RO4 OPTIMAL INVESTMENT STRATEGY USING SCALABLE MACHINE LEARNING AND DATA ANALYTICS FOR SMALL-CAP STOCKS MOTIVATION MACHINE LEARNING AND FINANCE MOTIVATION SMALL-CAP MID-CAP

More information

Predicting Economic Recession using Data Mining Techniques

Predicting Economic Recession using Data Mining Techniques Predicting Economic Recession using Data Mining Techniques Authors Naveed Ahmed Kartheek Atluri Tapan Patwardhan Meghana Viswanath Predicting Economic Recession using Data Mining Techniques Page 1 Abstract

More information

Stock Market Predictor and Analyser using Sentimental Analysis and Machine Learning Algorithms

Stock Market Predictor and Analyser using Sentimental Analysis and Machine Learning Algorithms Volume 119 No. 12 2018, 15395-15405 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Stock Market Predictor and Analyser using Sentimental Analysis and Machine Learning Algorithms 1

More information

BPHD Financial Economic Theory Fall 2013

BPHD Financial Economic Theory Fall 2013 BPHD 8200-001 Financial Economic Theory Fall 2013 Instructor: Dr. Weidong Tian Class: 2:00pm 4:45pm Tuesday, Friday Building Room 207 Office: Friday Room 202A Email: wtian1@uncc.edu Phone: 704 687 7702

More information

Importance Sampling for Fair Policy Selection

Importance Sampling for Fair Policy Selection Importance Sampling for Fair Policy Selection Shayan Doroudi Carnegie Mellon University Pittsburgh, PA 15213 shayand@cs.cmu.edu Philip S. Thomas Carnegie Mellon University Pittsburgh, PA 15213 philipt@cs.cmu.edu

More information

An introduction to Machine learning methods and forecasting of time series in financial markets

An introduction to Machine learning methods and forecasting of time series in financial markets An introduction to Machine learning methods and forecasting of time series in financial markets Mark Wong markwong@kth.se December 10, 2016 Abstract The goal of this paper is to give the reader an introduction

More information

Introduction to Fall 2007 Artificial Intelligence Final Exam

Introduction to Fall 2007 Artificial Intelligence Final Exam NAME: SID#: Login: Sec: 1 CS 188 Introduction to Fall 2007 Artificial Intelligence Final Exam You have 180 minutes. The exam is closed book, closed notes except a two-page crib sheet, basic calculators

More information

A multiple model of perceptron neural network with sample selection through chicken swarm algorithm for financial forecasting

A multiple model of perceptron neural network with sample selection through chicken swarm algorithm for financial forecasting Communications on Advanced Computational Science with Applications 2017 No. 1 (2017) 85-94 Available online at www.ispacs.com/cacsa Volume 2017, Issue 1, Year 2017 Article ID cacsa-00070, 10 Pages doi:10.5899/2017/cacsa-00070

More information

PRIORITY QUEUES. binary heaps d-ary heaps binomial heaps Fibonacci heaps. Lecture slides by Kevin Wayne Copyright 2005 Pearson-Addison Wesley

PRIORITY QUEUES. binary heaps d-ary heaps binomial heaps Fibonacci heaps. Lecture slides by Kevin Wayne Copyright 2005 Pearson-Addison Wesley PRIORITY QUEUES binary heaps d-ary heaps binomial heaps Fibonacci heaps Lecture slides by Kevin Wayne Copyright 2005 Pearson-Addison Wesley http://www.cs.princeton.edu/~wayne/kleinberg-tardos Last updated

More information

CS 5522: Artificial Intelligence II

CS 5522: Artificial Intelligence II CS 5522: Artificial Intelligence II Uncertainty and Utilities Instructor: Alan Ritter Ohio State University [These slides were adapted from CS188 Intro to AI at UC Berkeley. All materials available at

More information

Stock Market Forecast: Chaos Theory Revealing How the Market Works March 25, 2018 I Know First Research

Stock Market Forecast: Chaos Theory Revealing How the Market Works March 25, 2018 I Know First Research Stock Market Forecast: Chaos Theory Revealing How the Market Works March 25, 2018 I Know First Research Stock Market Forecast : How Can We Predict the Financial Markets by Using Algorithms? Common fallacies

More information

THE COMPUTER VISION ADVANTAGE FOR INSURANCE CLAIMS E-BOOK

THE COMPUTER VISION ADVANTAGE FOR INSURANCE CLAIMS E-BOOK THE COMPUTER VISION ADVANTAGE FOR INSURANCE CLAIMS E-BOOK Table of contents The multiple challenges facing the insurance industry 3 AI Embedded in Insurance Processes 5 The Rise of Computer Vision 5 Examples

More information

Neuro Fuzzy based Stock Market Prediction System

Neuro Fuzzy based Stock Market Prediction System Neuro Fuzzy based Stock Market Prediction System M. Gunasekaran, S. Anitha, S. Kavipriya, Asst Professor, Dept of MCA, III MCA, Dept Of MCA, III MCA, Dept of MCA, Park College of Engg& tech, Park College

More information

Recommendations for Improving Federal Online Student Loan Counseling April 28, 2016

Recommendations for Improving Federal Online Student Loan Counseling April 28, 2016 Recommendations for Improving Federal Online Student Loan Counseling April 28, 2016 Loan counseling can play an integral role in helping student loan borrowers make wise borrowing decisions and avoid delinquency

More information

Are New Modeling Techniques Worth It?

Are New Modeling Techniques Worth It? Are New Modeling Techniques Worth It? Tom Zougas PhD PEng, Manager Data Science, TransUnion TORONTO SAS USER GROUP MAY 2, 2018 Are New Modeling Techniques Worth It? Presenter Tom Zougas PhD PEng, Manager

More information

MYAITREND. The World s First Free AI Stock Analyst. User Guide

MYAITREND. The World s First Free AI Stock Analyst. User Guide MYAITREND The World s First Free AI Stock Analyst User Guide MYAITREND User Guide MyAiTrend LLC E-Mail: support@myaitrend.com Table of Contents The First Free AI Stock Analyst... 2 Three Important Principles

More information

Algorithms PRIORITY QUEUES. binary heaps d-ary heaps binomial heaps Fibonacci heaps. binary heaps d-ary heaps binomial heaps Fibonacci heaps

Algorithms PRIORITY QUEUES. binary heaps d-ary heaps binomial heaps Fibonacci heaps. binary heaps d-ary heaps binomial heaps Fibonacci heaps Priority queue data type Lecture slides by Kevin Wayne Copyright 05 Pearson-Addison Wesley http://www.cs.princeton.edu/~wayne/kleinberg-tardos PRIORITY QUEUES binary heaps d-ary heaps binomial heaps Fibonacci

More information

SAS Data Mining & Neural Network as powerful and efficient tools for customer oriented pricing and target marketing in deregulated insurance markets

SAS Data Mining & Neural Network as powerful and efficient tools for customer oriented pricing and target marketing in deregulated insurance markets SAS Data Mining & Neural Network as powerful and efficient tools for customer oriented pricing and target marketing in deregulated insurance markets Stefan Lecher, Actuary Personal Lines, Zurich Switzerland

More information

Intelligent Computation Applied to Mutual Fund Investment: A Genetic Algorithms Approach

Intelligent Computation Applied to Mutual Fund Investment: A Genetic Algorithms Approach Intelligent Computation Applied to Mutual Fund Investment: A Genetic Algorithms Approach Nuno Lopes Instituto Superior Técnico Lisboa, Portugal nuno.m.lopes@ist.utl.pt Abstract This dissertation presents

More information

HCI: CONTENT LAYOUT. Dr Kami Vaniea

HCI: CONTENT LAYOUT. Dr Kami Vaniea HCI: CONTENT LAYOUT Dr Kami Vaniea 1 2 Affordance and Metaphores 3 Affordance An attribute of an object that allows people to know how to use it. -- ID book To afford means to give a clue It should be

More information

A Novel Method of Trend Lines Generation Using Hough Transform Method

A Novel Method of Trend Lines Generation Using Hough Transform Method International Journal of Computing Academic Research (IJCAR) ISSN 2305-9184, Volume 6, Number 4 (August 2017), pp.125-135 MEACSE Publications http://www.meacse.org/ijcar A Novel Method of Trend Lines Generation

More information

Stock Trading Following Stock Price Index Movement Classification Using Machine Learning Techniques

Stock Trading Following Stock Price Index Movement Classification Using Machine Learning Techniques Stock Trading Following Stock Price Index Movement Classification Using Machine Learning Techniques 6.1 Introduction Trading in stock market is one of the most popular channels of financial investments.

More information

A DECISION SUPPORT SYSTEM FOR HANDLING RISK MANAGEMENT IN CUSTOMER TRANSACTION

A DECISION SUPPORT SYSTEM FOR HANDLING RISK MANAGEMENT IN CUSTOMER TRANSACTION A DECISION SUPPORT SYSTEM FOR HANDLING RISK MANAGEMENT IN CUSTOMER TRANSACTION K. Valarmathi Software Engineering, SonaCollege of Technology, Salem, Tamil Nadu valarangel@gmail.com ABSTRACT A decision

More information

The Deployment-to-Saturation Ratio in Security Games (Online Appendix)

The Deployment-to-Saturation Ratio in Security Games (Online Appendix) The Deployment-to-Saturation Ratio in Security Games (Online Appendix) Manish Jain manish.jain@usc.edu University of Southern California, Los Angeles, California 989. Kevin Leyton-Brown kevinlb@cs.ubc.edu

More information

How Can YOU Use it? Artificial Intelligence for Actuaries. SOA Annual Meeting, Gaurav Gupta. Session 058PD

How Can YOU Use it? Artificial Intelligence for Actuaries. SOA Annual Meeting, Gaurav Gupta. Session 058PD Artificial Intelligence for Actuaries How Can YOU Use it? SOA Annual Meeting, 2018 Session 058PD Gaurav Gupta Founder & CEO ggupta@quaerainsights.com Audience Poll What is my level of AI understanding?

More information

Research on Enterprise Financial Management and Decision Making based on Decision Tree Algorithm

Research on Enterprise Financial Management and Decision Making based on Decision Tree Algorithm Research on Enterprise Financial Management and Decision Making based on Decision Tree Algorithm Shen Zhai School of Economics and Management, Urban Vocational College of Sichuan, Chengdu, Sichuan, China

More information

STOCK PRICE PREDICTION: KOHONEN VERSUS BACKPROPAGATION

STOCK PRICE PREDICTION: KOHONEN VERSUS BACKPROPAGATION STOCK PRICE PREDICTION: KOHONEN VERSUS BACKPROPAGATION Alexey Zorin Technical University of Riga Decision Support Systems Group 1 Kalkyu Street, Riga LV-1658, phone: 371-7089530, LATVIA E-mail: alex@rulv

More information

Banking Title Application Fraud: The Enemy at the Gates

Banking Title Application Fraud: The Enemy at the Gates WHITE PAPER Banking Title Application Fraud: The Enemy at the Gates It is a fraud to borrow what we are unable to pay. Publilius Syrus, first century B.C. ii Contents Overview... 1 What Is Application

More information

OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL

OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL Mrs.S.Mahalakshmi 1 and Mr.Vignesh P 2 1 Assistant Professor, Department of ISE, BMSIT&M, Bengaluru, India 2 Student,Department of ISE, BMSIT&M, Bengaluru,

More information

A Framework for Valuing, Optimizing and Understanding Managerial Flexibility

A Framework for Valuing, Optimizing and Understanding Managerial Flexibility A Framework for Valuing, Optimizing and Understanding Managerial Flexibility Charles Dumont McKinsey & Company Charles_dumont@mckinsey.com Phone: +1 514 791-0201 1250, boulevard René-Lévesque Ouest, suite

More information

Study of Relation between Market Efficiency and Stock Efficiency of Accepted Firms in Tehran Stock Exchange for Manufacturing of Basic Metals

Study of Relation between Market Efficiency and Stock Efficiency of Accepted Firms in Tehran Stock Exchange for Manufacturing of Basic Metals 2013, World of Researches Publication ISSN 2332-0206 Am. J. Life. Sci. Res. Vol. 1, Issue 4, 136-148, 2013 American Journal of Life Science Researches www.worldofresearches.com Study of Relation between

More information

COMP417 Introduction to Robotics and Intelligent Systems. Reinforcement Learning - 2

COMP417 Introduction to Robotics and Intelligent Systems. Reinforcement Learning - 2 COMP417 Introduction to Robotics and Intelligent Systems Reinforcement Learning - 2 Speaker: Sandeep Manjanna Acklowledgement: These slides use material from Pieter Abbeel s, Dan Klein s and John Schulman

More information

(OTCBB: VUZI) Bullish. Vuzix Corporation. Investment Highlights. Overview Recent Price. Avg Daily Volume PE Ratio Earnings Per Share

(OTCBB: VUZI) Bullish. Vuzix Corporation. Investment Highlights. Overview Recent Price. Avg Daily Volume PE Ratio Earnings Per Share (OTCBB: VUZI) Bullish Vuzix Corporation Overview Recent Price $6.47 52 Week Range $2.10 - $6.59 1 Month Range $3.47 - $6.59 Avg Daily Volume 123575.0 PE Ratio 19.11 Earnings Per Share Year EPS 2015(E)

More information

For general trading knowledge, please get a beginners guide or simply got to :

For general trading knowledge, please get a beginners guide or simply got to : www.forexripper.com About The System For general trading knowledge, please get a beginners guide or simply got to : www.babypips.com For more interactive information about the market, there are hundreds

More information

A Dynamic Hedging Strategy for Option Transaction Using Artificial Neural Networks

A Dynamic Hedging Strategy for Option Transaction Using Artificial Neural Networks A Dynamic Hedging Strategy for Option Transaction Using Artificial Neural Networks Hyun Joon Shin and Jaepil Ryu Dept. of Management Eng. Sangmyung University {hjshin, jpru}@smu.ac.kr Abstract In order

More information

Besting Dollar Cost Averaging Using A Genetic Algorithm A Master of Science Thesis Proposal For Applied Physics and Computer Science

Besting Dollar Cost Averaging Using A Genetic Algorithm A Master of Science Thesis Proposal For Applied Physics and Computer Science Besting Dollar Cost Averaging Using A Genetic Algorithm A Master of Science Thesis Proposal For Applied Physics and Computer Science By James Maxlow Christopher Newport University October, 2003 Approved

More information

Market Reactivity. Automated Trade Signals. Stocks & Commodities V. 28:8 (32-37): Market Reactivity by Al Gietzen

Market Reactivity. Automated Trade Signals. Stocks & Commodities V. 28:8 (32-37): Market Reactivity by Al Gietzen D Automated Trade Signals Market Reactivity Interpret what the market is saying by using some sound techniques. T by Al Gietzen he market reactivity system, which can be applied to both stocks and commodity

More information

Who s Afraid of Artificial Intelligence? Frank Cuypers

Who s Afraid of Artificial Intelligence? Frank Cuypers Who s Afraid of Artificial Intelligence? Frank Cuypers Scenario 2016 2020 2025 2030 2035 Solvency II initiates New players flood the market with digital alternatives to insurance Insurance industry flood

More information

Using Sector Information with Linear Genetic Programming for Intraday Equity Price Trend Analysis

Using Sector Information with Linear Genetic Programming for Intraday Equity Price Trend Analysis WCCI 202 IEEE World Congress on Computational Intelligence June, 0-5, 202 - Brisbane, Australia IEEE CEC Using Sector Information with Linear Genetic Programming for Intraday Equity Price Trend Analysis

More information

Dynamic Programming and Reinforcement Learning

Dynamic Programming and Reinforcement Learning Dynamic Programming and Reinforcement Learning Daniel Russo Columbia Business School Decision Risk and Operations Division Fall, 2017 Daniel Russo (Columbia) Fall 2017 1 / 34 Supervised Machine Learning

More information

Chapter 8. Capital Budgeting Cash Flow

Chapter 8. Capital Budgeting Cash Flow Chapter 8 Capital Budgeting Cash Flow Learning Goals 1. Understand the motives for key capital budgeting expenditures and the steps in the capital budgeting process. 2. Define basic capital budgeting terminology.

More information

Valencia. Keywords: Conditional volatility, backpropagation neural network, GARCH in Mean MSC 2000: 91G10, 91G70

Valencia. Keywords: Conditional volatility, backpropagation neural network, GARCH in Mean MSC 2000: 91G10, 91G70 Int. J. Complex Systems in Science vol. 2(1) (2012), pp. 21 26 Estimating returns and conditional volatility: a comparison between the ARMA-GARCH-M Models and the Backpropagation Neural Network Fernando

More information

Prediction of Future Stock Close Price using Proposed Hybrid ANN Model of Functional Link Fuzzy Logic Neural Model

Prediction of Future Stock Close Price using Proposed Hybrid ANN Model of Functional Link Fuzzy Logic Neural Model Institute of Advanced Engineering and Science IAES International Journal of Artificial Intelligence (IJ-AI) Vol. 1, No. 1, March 2012, pp. 25~30 ISSN: 2252-8938 25 Prediction of Future Stock Close Price

More information

Reinforcement Learning (1): Discrete MDP, Value Iteration, Policy Iteration

Reinforcement Learning (1): Discrete MDP, Value Iteration, Policy Iteration Reinforcement Learning (1): Discrete MDP, Value Iteration, Policy Iteration Piyush Rai CS5350/6350: Machine Learning November 29, 2011 Reinforcement Learning Supervised Learning: Uses explicit supervision

More information

MFE Course Details. Financial Mathematics & Statistics

MFE Course Details. Financial Mathematics & Statistics MFE Course Details Financial Mathematics & Statistics Calculus & Linear Algebra This course covers mathematical tools and concepts for solving problems in financial engineering. It will also help to satisfy

More information

Object-Oriented Programming: A Method for Pricing Options

Object-Oriented Programming: A Method for Pricing Options Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 2016 Object-Oriented Programming: A Method for Pricing Options Leonard Stewart Higham Follow this and additional

More information

Reinforcement Learning. Slides based on those used in Berkeley's AI class taught by Dan Klein

Reinforcement Learning. Slides based on those used in Berkeley's AI class taught by Dan Klein Reinforcement Learning Slides based on those used in Berkeley's AI class taught by Dan Klein Reinforcement Learning Basic idea: Receive feedback in the form of rewards Agent s utility is defined by the

More information

Machine Learning for Physicists Lecture 10. Summer 2017 University of Erlangen-Nuremberg Florian Marquardt

Machine Learning for Physicists Lecture 10. Summer 2017 University of Erlangen-Nuremberg Florian Marquardt Machine Learning for Physicists Lecture 10 Summer 2017 University of Erlangen-Nuremberg Florian Marquardt Function/Image representation Image classification [Handwriting recognition] Convolutional nets

More information

CS 188: Artificial Intelligence Spring Announcements

CS 188: Artificial Intelligence Spring Announcements CS 188: Artificial Intelligence Spring 2011 Lecture 9: MDPs 2/16/2011 Pieter Abbeel UC Berkeley Many slides over the course adapted from either Dan Klein, Stuart Russell or Andrew Moore 1 Announcements

More information

WESTERN INDIAN REGIONAL COUNCIL, THE INSTITUTE OF CHARTERED ACCOUNTANTS OF INDIA. Workshop on Transfer Pricing. Safe Harbour Rules- An Overview

WESTERN INDIAN REGIONAL COUNCIL, THE INSTITUTE OF CHARTERED ACCOUNTANTS OF INDIA. Workshop on Transfer Pricing. Safe Harbour Rules- An Overview WESTERN INDIAN REGIONAL COUNCIL, THE INSTITUTE OF CHARTERED ACCOUNTANTS OF INDIA Workshop on Transfer Pricing Safe Harbour Rules- An Overview Sanjay Kapadia Background Introduced in Finance (No 2) Act,

More information

Quant Trader. Market Forecasting and Optimization of Trading Models. Presented by Quant Trade Technologies, Inc.

Quant Trader. Market Forecasting and Optimization of Trading Models. Presented by Quant Trade Technologies, Inc. Quant Trader Market Forecasting and Optimization of Trading Models Presented by Quant Trade Technologies, Inc. Trading Strategies Backtesting Engine Expert Optimization Portfolio Analysis Trading Script

More information

ARTIFICIAL NEURAL NETWORK SYSTEM FOR PREDICTION OF US MARKET INDICES USING MISO AND MIMO APROACHES

ARTIFICIAL NEURAL NETWORK SYSTEM FOR PREDICTION OF US MARKET INDICES USING MISO AND MIMO APROACHES ARTIFICIAL NEURAL NETWORK SYSTEM FOR PREDICTION OF US MARKET INDICES USING MISO AND MIMO APROACHES Hari Sharma, Virginia State University Hari S. Hota, Bilaspur University Kate Brown, University of Maryland

More information

Uncertain Outcomes. CS 188: Artificial Intelligence Uncertainty and Utilities. Expectimax Search. Worst-Case vs. Average Case

Uncertain Outcomes. CS 188: Artificial Intelligence Uncertainty and Utilities. Expectimax Search. Worst-Case vs. Average Case CS 188: Artificial Intelligence Uncertainty and Utilities Uncertain Outcomes Instructor: Marco Alvarez University of Rhode Island (These slides were created/modified by Dan Klein, Pieter Abbeel, Anca Dragan

More information

Reducing Planning to Classification

Reducing Planning to Classification Reducing Planning to Classification Joint work w/ SungWook Yoon and Bob Givan Available actions (possibly stochastic): Pickup(x) PutDown(x,y) 2 Relational MDP / Planning Domain???? Reduction Algorithm

More information

SANE Analysis Update

SANE Analysis Update SANE Analysis Update Artificial Neural Networks in Analyzing BETA Whitney Armstrong Temple University Physics Department January 23, 2010 Introduction Introduction 1 Spin Asymmetries of the Nucleon Experiment

More information

Foreign Exchange Rate Forecasting using Levenberg- Marquardt Learning Algorithm

Foreign Exchange Rate Forecasting using Levenberg- Marquardt Learning Algorithm Indian Journal of Science and Technology, Vol 9(8), DOI: 10.17485/ijst/2016/v9i8/87904, February 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Foreign Exchange Rate Forecasting using Levenberg-

More information

CS 343: Artificial Intelligence

CS 343: Artificial Intelligence CS 343: Artificial Intelligence Uncertainty and Utilities Instructors: Dan Klein and Pieter Abbeel University of California, Berkeley [These slides are based on those of Dan Klein and Pieter Abbeel for

More information