Overview. Ø Neural Networks are considered black-box models Ø They are complex and do not provide much insight into variable relationships

Size: px
Start display at page:

Download "Overview. Ø Neural Networks are considered black-box models Ø They are complex and do not provide much insight into variable relationships"

Transcription

1 Neural Networks

2 Overview Ø s are considered black-box models Ø They are complex and do not provide much insight into variable relationships Ø They have the potential to model very complicated patterns ( universal approximators ) Ø Can be used for both classification and continuous prediction tasks.

3 The History Ø Concept was welcomed with enthusiasm in 80 s Ø Didn t live up to expectations then Ø Too much hype, perhaps Ø Overtaken by other black box techniques like Support Vector Machines with Kernels in 2000 s Ø Now in the age of image and visual recognition problems, neural networks have made comeback Ø Area of rapid development Ø Rebranded as Deep Learning Ø Recurrent s Ø Convolutional s Ø Feedforward s

4 The Structure of a These s are often called Multilayer Perceptrons (MLPs)

5 The Structure of a Output Hidden Layer 2 Input Layer Hidden Layer 1

6 The Structure of a! " & "" & #"! #! $ & "# & ## '( Output! % & "$ bias bias (=1) Input Layer bias Hidden Layer 1 Hidden Layer 2

7 The Structure of a '( Associated with each line in this diagram is a parameter to be solved for!

8 A Simpler! " & "! # & # )! $ +,-. bias (=1) To avoid triple subscripts, let s simplify our network to 1 hidden layer and just 3 input variables. We ll assume a binary target

9 Math Structure of a! " 6 "" & "! # 6 "# & # ) 6 "$! $ 6 "7 +,-. bias (=1) & " = tanh (6 "7 + 6 ""! " + 6 "#! # + 6 "$! $ ) Hyperbolic tangent. One of many possible sigmoid functions. Range is -1 to 1. Related to logistic function.

10 Sigmoid Function 1 tanh

11 Math Structure of a! " 6 "" & "! # 6 "# & # ) 6 "$! $ 6 "7 +,-. bias (=1) & " = tanh (6 "7 + 6 ""! " + 6 "#! # + 6 "$! $ ) The intercept of each equation called bias term

12 Math Structure of a! " 6 #" & "! # 6 ## & # )! $ 6 #$ +,-. bias (=1) 6 #7 & # = tanh (6 #7 + 6 #"! " + 6 ##! # + 6 #$! $ ) The intercept of each equation called bias term

13 Math Structure of a! " & "! # & # 6 7" )! $ 6 7# +, bias (=1) :;<,= () ) = " & " + 6 7# & #

14 Math Structure of a Ø With just 3 input variables and 1 hidden layer containing 2 hidden units, we have to estimate 11 parameters! & " = tanh (6 "7 + 6 ""! " + 6 "#! # + 6 "$! $ ) & # = tanh (6 #7 + 6 #"! " + 6 ##! # + 6 #$! $ ) :;<,= () ) = " & " + 6 7# & # Ø Weight estimates found by maximizing the loglikelihood function for a class target Ø The process involves an algorithm called backpropagation

15 Math Structure of a Ø With just 3 input variables and 1 hidden layer containing 2 hidden units, we have to estimate 11 parameters! & " = tanh (6 "7 + 6 ""! " + 6 "#! # + 6 "$! $ ) & # = tanh (6 #7 + 6 #"! " + 6 ##! # + 6 #$! $ ) :;<,= () ) = " & " + 6 7# & # Ø Probability estimates are obtained by solving the logit equation for p for each (x 1, x 2 ):

16 Training a Neural Net (Backpropagation Algorithm) Ø Forward phase: Starting with some initial weights (often random), the calculations are passed through the network to the output layer where a predicted value is computed. Ø Backward phase: The predicted value is compared to the actual value and the error is propagated backwards in the network to modify the connection weights. Ø Repeat until something like convergence.

17 Standardization Ø s work best when input data are scaled to a narrow range around 0 Ø For bell shaped data, statistical z-score standardization appropriate Ø For severely non-normal data, range standardization more appropriate.

18 Probability Surface of a High probability of yellow class Lower probability of yellow class

19 Probability Surface of a

20 Advantages of a Neural Network Ø Can be adapted to classification or numerical prediction problems Ø Capable of modelling complex nonlinear patterns Ø (More complex than any other algorithm right now) Ø Makes few assumptions about the data s underlying relationships.

21 Disadvantages of a Ø s have no mechanism for variable selection. You provide inputs. Ø Very difficult to see the relationships underlying the data. Ø Signs of weights can cancel each other out through the networks Ø Each input gets weight for each hidden unit which then get combined Ø Extremely computationally intensive Ø Slow to train Ø Particularly if network structure is complex or number of variables is large Ø Prone to overfitting training data

Support Vector Machines

Support Vector Machines Support Vector Machines Linearly Separable Data SVM: Simple Linear Separator hyperplane Which Simple Linear Separator? Classifier Margin Objective #1: Maximize Margin MARGIN MARGIN How s this look? MARGIN

More information

Random Forests. Gradient Boosting. and. Bagging and Boosting

Random Forests. Gradient Boosting. and. Bagging and Boosting Random Forests and Gradient Boosting Bagging and Boosting The Bootstrap Sample and Bagging Simple ideas to improve any model via ensemble Bootstrap Samples Ø Random samples of your data with replacement

More information

Robust Electric Power Infrastructures. Response and Recovery during Catastrophic Failures.

Robust Electric Power Infrastructures. Response and Recovery during Catastrophic Failures. Robust Electric Power Infrastructures. Response and Recovery during Catastrophic Failures. Arturo Suman Bretas Dissertation submitted to the Faculty of the Virginia Polytechnic Institute and State University

More information

Probabilistic Latent Semantic Analysis Hofmann (1999)

Probabilistic Latent Semantic Analysis Hofmann (1999) Probabilistic Latent Semantic Analysis Hofmann (1999) Presenter: Mercè Vintró Ricart February 8, 2016 Outline Background Topic models: What are they? Why do we use them? Latent Semantic Analysis (LSA)

More information

Deep Learning and Visualization of Election Data

Deep Learning and Visualization of Election Data Deep Learning and Visualization of Election Data Garcia, Jorge A. New Mexico State University Tao, Ng Ching City University of Hong Kong Betancourt, Frank University of Tennessee, Knoxville Wong, Kwai

More information

Instructors: Tengyu Ma and Chris Re

Instructors: Tengyu Ma and Chris Re Instructors: Tengyu Ma and Chris Re cs229.stanford.edu Ø Probability (CS109 or STAT 116) Ø distribution, random variable, expectation, conditional probability, variance, density Ø Linear algebra (Math

More information

Tengyu Ma Facebook AI Research. Based on joint work with Yuanzhi Li (Princeton) and Hongyang Zhang (Stanford)

Tengyu Ma Facebook AI Research. Based on joint work with Yuanzhi Li (Princeton) and Hongyang Zhang (Stanford) Tengyu Ma Facebook AI Research Based on joint work with Yuanzhi Li (Princeton) and Hongyang Zhang (Stanford) Ø Over-parameterization: # parameters # examples Ø a set of parameters that can Ø fit to training

More information

Classifier Evaluation and Selection. Review and Overview of Methods

Classifier Evaluation and Selection. Review and Overview of Methods Classifier Evaluation and Selection Review and Overview of Methods Things to consider Ø Interpretation vs. Prediction Ø Model Parsimony vs. Model Error Ø Type of prediction task: Ø Decisions Interested

More information

Cluster Analysis. (see also: Segmentation)

Cluster Analysis. (see also: Segmentation) Cluster Analysis (see also: Segmentation) Cluster Analysis Ø Unsupervised: no target variable for training Ø Partition the data into groups (clusters) so that: Ø Observations within a cluster are similar

More information

CS 229 Final Project - Party Predictor: Predicting Political A liation

CS 229 Final Project - Party Predictor: Predicting Political A liation CS 229 Final Project - Party Predictor: Predicting Political A liation Brandon Ewonus bewonus@stanford.edu Bryan McCann bmccann@stanford.edu Nat Roth nroth@stanford.edu Abstract In this report we analyze

More information

Recommendations For Reddit Users Avideh Taalimanesh and Mohammad Aleagha Stanford University, December 2012

Recommendations For Reddit Users Avideh Taalimanesh and Mohammad Aleagha Stanford University, December 2012 Recommendations For Reddit Users Avideh Taalimanesh and Mohammad Aleagha Stanford University, December 2012 Abstract In this paper we attempt to develop an algorithm to generate a set of post recommendations

More information

Thinkwell s Homeschool Microeconomics Course Lesson Plan: 31 weeks

Thinkwell s Homeschool Microeconomics Course Lesson Plan: 31 weeks Thinkwell s Homeschool Microeconomics Course Lesson Plan: 31 weeks Welcome to Thinkwell s Homeschool Microeconomics! We re thrilled that you ve decided to make us part of your homeschool curriculum. This

More information

Lecture 8: Verification and Validation

Lecture 8: Verification and Validation Thanks to Prof. Steve Easterbrook University of Toronto What are goals of V&V Validation Techniques Ø Inspection Ø Model Checking Ø Prototyping Verification Techniques Ø Consistency Checking Lecture 8:

More information

PROJECTING THE LABOUR SUPPLY TO 2024

PROJECTING THE LABOUR SUPPLY TO 2024 PROJECTING THE LABOUR SUPPLY TO 2024 Charles Simkins Helen Suzman Professor of Political Economy School of Economic and Business Sciences University of the Witwatersrand May 2008 centre for poverty employment

More information

IBM Cognos Open Mic Cognos Analytics 11 Part nd June, IBM Corporation

IBM Cognos Open Mic Cognos Analytics 11 Part nd June, IBM Corporation IBM Cognos Open Mic Cognos Analytics 11 Part 2 22 nd June, 2016 IBM Cognos Open MIC Team Deepak Giri Presenter Subhash Kothari Technical Panel Member Chakravarthi Mannava Technical Panel Member 2 Agenda

More information

P(x) testing training. x Hi

P(x) testing training. x Hi ÙÑÙÐ Ø Ú ÈÖÓ Ø ± Ê Ú Û Ó Ä ØÙÖ ½ Ç Ñ³ Ê ÞÓÖ Ì ÑÔÐ Ø ÑÓ Ð Ø Ø Ø Ø Ø Ð Ó Ø ÑÓ Ø ÔÐ Ù Ð º Ë ÑÔÐ Ò P(x) testing training Ø ÒÓÓÔ Ò x ÓÑÔÐ Ü ØÝ Ó h ÓÑÔÐ Ü ØÝ Ó H ¼ ¾¼ ½¼ ¼ ¹½¼ ÒÓÓÔ Ò ÒÓ ÒÓÓÔ Ò ÙÒÐ ÐÝ Ú ÒØ Ò

More information

Deep Learning Working Group R-CNN

Deep Learning Working Group R-CNN Deep Learning Working Group R-CNN Includes slides from : Josef Sivic, Andrew Zisserman and so many other Nicolas Gonthier February 1, 2018 Recognition Tasks Image Classification Does the image contain

More information

Chapter Five: Forces. Ø 5.1 Forces. Ø 5.2 Friction. Ø 5.3 Forces and Equilibrium

Chapter Five: Forces. Ø 5.1 Forces. Ø 5.2 Friction. Ø 5.3 Forces and Equilibrium Chapter Five: Forces Ø 5.1 Forces Ø 5.2 Friction Ø 5.3 Forces and Equilibrium 5.1 The cause of forces Ø A force is a push or pull, or an action that has the ability to change motion. Ø Forces can increase

More information

JUDGE, JURY AND CLASSIFIER

JUDGE, JURY AND CLASSIFIER JUDGE, JURY AND CLASSIFIER An Introduction to Trees 15.071x The Analytics Edge The American Legal System The legal system of the United States operates at the state level and at the federal level Federal

More information

Ethnic minority poverty and disadvantage in the UK

Ethnic minority poverty and disadvantage in the UK Ethnic minority poverty and disadvantage in the UK Lucinda Platt Institute for Social & Economic Research University of Essex Institut d Anàlisi Econòmica, CSIC, Barcelona 2 Focus on child poverty Scope

More information

Hoboken Public Schools. College Algebra Curriculum

Hoboken Public Schools. College Algebra Curriculum Hoboken Public Schools College Algebra Curriculum College Algebra HOBOKEN PUBLIC SCHOOLS Course Description College Algebra reflects the New Jersey learning standards at the high school level and is designed

More information

Introduction to Path Analysis: Multivariate Regression

Introduction to Path Analysis: Multivariate Regression Introduction to Path Analysis: Multivariate Regression EPSY 905: Multivariate Analysis Spring 2016 Lecture #7 March 9, 2016 EPSY 905: Multivariate Regression via Path Analysis Today s Lecture Multivariate

More information

Introduction to Text Modeling

Introduction to Text Modeling Introduction to Text Modeling Carl Edward Rasmussen November 11th, 2016 Carl Edward Rasmussen Introduction to Text Modeling November 11th, 2016 1 / 7 Key concepts modeling document collections probabilistic

More information

Hoboken Public Schools. AP Calculus Curriculum

Hoboken Public Schools. AP Calculus Curriculum Hoboken Public Schools AP Calculus Curriculum AP Calculus HOBOKEN PUBLIC SCHOOLS Course Description An Advanced Placement (AP) course in calculus consists of a full high school academic year of work that

More information

HOW ECONOMIES GROW AND DEVELOP Macroeconomics In Context (Goodwin, et al.)

HOW ECONOMIES GROW AND DEVELOP Macroeconomics In Context (Goodwin, et al.) Chapter 17 HOW ECONOMIES GROW AND DEVELOP Macroeconomics In Context (Goodwin, et al.) Chapter Overview This chapter presents material on economic growth, such as the theory behind it, how it is calculated,

More information

Thinkwell s Homeschool Economics Course Lesson Plan: 36 weeks

Thinkwell s Homeschool Economics Course Lesson Plan: 36 weeks Thinkwell s Homeschool Economics Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Economics! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

More information

Outline for Teaching/Assignments (Semestered School ~88 classes per semester)

Outline for Teaching/Assignments (Semestered School ~88 classes per semester) MATH FOCUS 9 Outline for Teaching/Assignments (Semestered School ~88 classes per semester) CLASS # SECTION & TITLE CHAPTER 1: RATIONAL NUMBERS (9 classes) RECOMMENDED PRACTISING QUESTIONS* (KAQs are in

More information

Tie Breaking in STV. 1 Introduction. 3 The special case of ties with the Meek algorithm. 2 Ties in practice

Tie Breaking in STV. 1 Introduction. 3 The special case of ties with the Meek algorithm. 2 Ties in practice Tie Breaking in STV 1 Introduction B. A. Wichmann Brian.Wichmann@bcs.org.uk Given any specific counting rule, it is necessary to introduce some words to cover the situation in which a tie occurs. However,

More information

* Source: Part I Theoretical Distribution

* Source:   Part I Theoretical Distribution Problem: A recent report from Pew Research Center (September 14, 2018) discussed key finding about U.S. immigrants. One result was that Mexico is the top origin country of the U.S. immigrant population.

More information

The Effectiveness of Receipt-Based Attacks on ThreeBallot

The Effectiveness of Receipt-Based Attacks on ThreeBallot The Effectiveness of Receipt-Based Attacks on ThreeBallot Kevin Henry, Douglas R. Stinson, Jiayuan Sui David R. Cheriton School of Computer Science University of Waterloo Waterloo, N, N2L 3G1, Canada {k2henry,

More information

Understanding factors that influence L1-visa outcomes in US

Understanding factors that influence L1-visa outcomes in US Understanding factors that influence L1-visa outcomes in US By Nihar Dalmia, Meghana Murthy and Nianthrini Vivekanandan Link to online course gallery : https://www.ischool.berkeley.edu/projects/2017/understanding-factors-influence-l1-work

More information

CS 229: r/classifier - Subreddit Text Classification

CS 229: r/classifier - Subreddit Text Classification CS 229: r/classifier - Subreddit Text Classification Andrew Giel agiel@stanford.edu Jonathan NeCamp jnecamp@stanford.edu Hussain Kader hkader@stanford.edu Abstract This paper presents techniques for text

More information

Research and strategy for the land community.

Research and strategy for the land community. Research and strategy for the land community. To: Northeastern Minnesotans for Wilderness From: Sonia Wang, Spencer Phillips Date: 2/27/2018 Subject: Full results from the review of comments on the proposed

More information

Essential Questions Content Skills Assessments Standards/PIs. Identify prime and composite numbers, GCF, and prime factorization.

Essential Questions Content Skills Assessments Standards/PIs. Identify prime and composite numbers, GCF, and prime factorization. Map: MVMS Math 7 Type: Consensus Grade Level: 7 School Year: 2007-2008 Author: Paula Barnes District/Building: Minisink Valley CSD/Middle School Created: 10/19/2007 Last Updated: 11/06/2007 How does the

More information

Category-level localization. Cordelia Schmid

Category-level localization. Cordelia Schmid Category-level localization Cordelia Schmid Recognition Classification Object present/absent in an image Often presence of a significant amount of background clutter Localization / Detection Localize object

More information

Model of Voting. February 15, Abstract. This paper uses United States congressional district level data to identify how incumbency,

Model of Voting. February 15, Abstract. This paper uses United States congressional district level data to identify how incumbency, U.S. Congressional Vote Empirics: A Discrete Choice Model of Voting Kyle Kretschman The University of Texas Austin kyle.kretschman@mail.utexas.edu Nick Mastronardi United States Air Force Academy nickmastronardi@gmail.com

More information

Hoboken Public Schools. Algebra II Honors Curriculum

Hoboken Public Schools. Algebra II Honors Curriculum Hoboken Public Schools Algebra II Honors Curriculum Algebra Two Honors HOBOKEN PUBLIC SCHOOLS Course Description Algebra II Honors continues to build students understanding of the concepts that provide

More information

Classification, Detection and Prosecution of Fraud on Mobile Networks

Classification, Detection and Prosecution of Fraud on Mobile Networks Classification, Detection and Prosecution of Fraud on Mobile Networks Phil Gosset (1) and Mark Hyland (2) (1) Vodafone Ltd, The Courtyard, 2-4 London Road, Newbury, Berkshire, RG14 1JX, England (2) ICRI,

More information

The HeLIx + inversion code Genetic algorithms. A. Lagg - Abisko Winter School 1

The HeLIx + inversion code Genetic algorithms. A. Lagg - Abisko Winter School 1 The HeLIx + inversion code Genetic algorithms A. Lagg - Abisko Winter School 1 Inversion of the RTE Once solution of RTE is known: Ø comparison between Stokes spectra of synthetic and observed spectrum

More information

Hoboken Public Schools. Project Lead The Way Curriculum Grade 8

Hoboken Public Schools. Project Lead The Way Curriculum Grade 8 Hoboken Public Schools Project Lead The Way Curriculum Grade 8 Project Lead The Way HOBOKEN PUBLIC SCHOOLS Course Description PLTW Gateway s 9 units empower students to lead their own discovery. The hands-on

More information

Processes. Criteria for Comparing Scheduling Algorithms

Processes. Criteria for Comparing Scheduling Algorithms 1 Processes Scheduling Processes Scheduling Processes Don Porter Portions courtesy Emmett Witchel Each process has state, that includes its text and data, procedure call stack, etc. This state resides

More information

Improved Boosting Algorithms Using Confidence-rated Predictions

Improved Boosting Algorithms Using Confidence-rated Predictions Improved Boosting Algorithms Using Confidence-rated Predictions ÊÇÊÌ º ËÀÈÁÊ schapire@research.att.com AT&T Labs, Shannon Laboratory, 18 Park Avenue, Room A279, Florham Park, NJ 7932-971 ÇÊÅ ËÁÆÊ singer@research.att.com

More information

Production Sharing Agreements as a Form of International Cooperation N. Chebaeva, post-graduate student Supervisor Professor Dr. Igor B.

Production Sharing Agreements as a Form of International Cooperation N. Chebaeva, post-graduate student Supervisor Professor Dr. Igor B. Production Sharing Agreements as a Form of International Cooperation N. Chebaeva, post-graduate student Supervisor Professor Dr. Igor B. Sergeev Production Sharing Agreements PSA a contract, under which

More information

FastBridge Math Assessments

FastBridge Math Assessments FastBridge Math Assessments Screening Ø Types of math skills Ø How FastBridge tools measure math skills ü Screening ü Progress Monitoring Ø Activity: selecting math progress measures for specific student

More information

RECOMMENDED CITATION: Pew Research Center, May, 2017, Partisan Identification Is Sticky, but About 10% Switched Parties Over the Past Year

RECOMMENDED CITATION: Pew Research Center, May, 2017, Partisan Identification Is Sticky, but About 10% Switched Parties Over the Past Year NUMBERS, FACTS AND TRENDS SHAPING THE WORLD FOR RELEASE MAY 17, 2017 FOR MEDIA OR OTHER INQUIRIES: Carroll Doherty, Director of Political Research Jocelyn Kiley, Associate Director, Research Bridget Johnson,

More information

Probabilistic earthquake early warning in complex earth models using prior sampling

Probabilistic earthquake early warning in complex earth models using prior sampling Probabilistic earthquake early warning in complex earth models using prior sampling Andrew Valentine, Paul Käufl & Jeannot Trampert EGU 2016 21 st April www.geo.uu.nl/~andrew a.p.valentine@uu.nl A case

More information

Congressional Gridlock: The Effects of the Master Lever

Congressional Gridlock: The Effects of the Master Lever Congressional Gridlock: The Effects of the Master Lever Olga Gorelkina Max Planck Institute, Bonn Ioanna Grypari Max Planck Institute, Bonn Preliminary & Incomplete February 11, 2015 Abstract This paper

More information

A comparative analysis of subreddit recommenders for Reddit

A comparative analysis of subreddit recommenders for Reddit A comparative analysis of subreddit recommenders for Reddit Jay Baxter Massachusetts Institute of Technology jbaxter@mit.edu Abstract Reddit has become a very popular social news website, but even though

More information

(a) Draw side-by-side box plots that show the yields of the two types of land. Check for outliers before making the plots.

(a) Draw side-by-side box plots that show the yields of the two types of land. Check for outliers before making the plots. 1. In hilly areas, farmers often contour their fields to reduce the erosion due to water flow. This might have the unintended effect of changing the yield since the rows may not be aligned in an east-west

More information

Chapter. Sampling Distributions Pearson Prentice Hall. All rights reserved

Chapter. Sampling Distributions Pearson Prentice Hall. All rights reserved Chapter 8 Sampling Distributions 2010 Pearson Prentice Hall. All rights reserved Section 8.1 Distribution of the Sample Mean 2010 Pearson Prentice Hall. All rights reserved Objectives 1. Describe the distribution

More information

Swiss E-Voting Workshop 2010

Swiss E-Voting Workshop 2010 Swiss E-Voting Workshop 2010 Verifiability in Remote Voting Systems September 2010 Jordi Puiggali VP Research & Development Jordi.Puiggali@scytl.com Index Auditability in e-voting Types of verifiability

More information

Combating Human Trafficking Using Mathematics

Combating Human Trafficking Using Mathematics Duquesne University Duquesne Scholarship Collection Undergraduate Research and Scholarship Symposium 8th Annual Undergraduate Research & Scholarship Symposium April 6, 216 Combating Human Trafficking Using

More information

Analysis of Categorical Data from the California Department of Corrections

Analysis of Categorical Data from the California Department of Corrections Lab 5 Analysis of Categorical Data from the California Department of Corrections About the Data The dataset you ll examine is from a study by the California Department of Corrections (CDC) on the effectiveness

More information

Multilevel models for repeated binary outcomes: attitudes and vote over the electoral cycle

Multilevel models for repeated binary outcomes: attitudes and vote over the electoral cycle Multilevel models for repeated binary outcomes: attitudes and vote over the electoral cycle by Min Yang,* Anthony Heath** and Harvey Goldstein* * Institute of Education, University of London; ** Nuffield

More information

VoteCastr methodology

VoteCastr methodology VoteCastr methodology Introduction Going into Election Day, we will have a fairly good idea of which candidate would win each state if everyone voted. However, not everyone votes. The levels of enthusiasm

More information

An overview and comparison of voting methods for pattern recognition

An overview and comparison of voting methods for pattern recognition An overview and comparison of voting methods for pattern recognition Merijn van Erp NICI P.O.Box 9104, 6500 HE Nijmegen, the Netherlands M.vanErp@nici.kun.nl Louis Vuurpijl NICI P.O.Box 9104, 6500 HE Nijmegen,

More information

Integrative Analytics for Detecting and Disrupting Transnational Interdependent Criminal Smuggling, Money, and Money-Laundering Networks

Integrative Analytics for Detecting and Disrupting Transnational Interdependent Criminal Smuggling, Money, and Money-Laundering Networks Proc. 2018 IEEE International Symposium on Technologies for Homeland Security (HST'18),Woburn, MA, Oct. 23-24, 2018 received the Best Paper Award in the Land/Maritime Borders and Critical Infrastructure

More information

Political Economics II Spring Lectures 4-5 Part II Partisan Politics and Political Agency. Torsten Persson, IIES

Political Economics II Spring Lectures 4-5 Part II Partisan Politics and Political Agency. Torsten Persson, IIES Lectures 4-5_190213.pdf Political Economics II Spring 2019 Lectures 4-5 Part II Partisan Politics and Political Agency Torsten Persson, IIES 1 Introduction: Partisan Politics Aims continue exploring policy

More information

Lecture 6 Cryptographic Hash Functions

Lecture 6 Cryptographic Hash Functions Lecture 6 Cryptographic Hash Functions 1 Purpose Ø CHF one of the most important tools in modern cryptography and security Ø In crypto, CHF instantiates a Random Oracle paradigm Ø In security, used in

More information

WORKGROUP S CONSENSUS PROCESS AND GUIDING PRINCIPLES CONSENSUS

WORKGROUP S CONSENSUS PROCESS AND GUIDING PRINCIPLES CONSENSUS WORKGROUP S CONSENSUS PROCESS AND GUIDING PRINCIPLES CONSENSUS The Florida Building Commission seeks to develop consensus decisions on its recommendations and policy decisions. The Commission provides

More information

Mesleki İngilizce - Technical English. Why take IELTS? Academic vs. General. Why take IELTS? (Cont.) Notes: Dr. Görkem SERBES

Mesleki İngilizce - Technical English. Why take IELTS? Academic vs. General. Why take IELTS? (Cont.) Notes: Dr. Görkem SERBES Mesleki İngilizce - Technical English Dr. Görkem SERBES Notes: 11 In the slides, You will find information about the IELTS (The International English Language Testing System). You will learn how to be

More information

BASICS OF HOLOGRAPHY

BASICS OF HOLOGRAPHY --------~~ BASICS OF HOLOGRAPHY P. HARIHARAN School of Physics, University ()f Sydney, Australia CAMBRIDGE UNIVERSITY PRESS ... PUBLISHED BY TI-IE PRESS SYNDICATE OF TI-IE UNIVERSITY OF CAMllRIDGE The

More information

Genetic Algorithms with Elitism-Based Immigrants for Changing Optimization Problems

Genetic Algorithms with Elitism-Based Immigrants for Changing Optimization Problems Genetic Algorithms with Elitism-Based Immigrants for Changing Optimization Problems Shengxiang Yang Department of Computer Science, University of Leicester University Road, Leicester LE1 7RH, United Kingdom

More information

Towards Tackling Hate Online Automatically

Towards Tackling Hate Online Automatically Towards Tackling Hate Online Automatically Nikola Ljubešić 1, Darja Fišer 2,1, Tomaž Erjavec 1 1 Department of Knowledge Technologies, Jožef Stefan Institute, Ljubljana 2 Department of Translation, University

More information

Hoboken Public Schools. AP Statistics Curriculum

Hoboken Public Schools. AP Statistics Curriculum Hoboken Public Schools AP Statistics Curriculum AP Statistics HOBOKEN PUBLIC SCHOOLS Course Description AP Statistics is the high school equivalent of a one semester, introductory college statistics course.

More information

SIMPLE LINEAR REGRESSION OF CPS DATA

SIMPLE LINEAR REGRESSION OF CPS DATA SIMPLE LINEAR REGRESSION OF CPS DATA Using the 1995 CPS data, hourly wages are regressed against years of education. The regression output in Table 4.1 indicates that there are 1003 persons in the CPS

More information

Female Migration, Human Capital and Fertility

Female Migration, Human Capital and Fertility Female Migration, Human Capital and Fertility Vincenzo Caponi, CREST (Ensai), Ryerson University,IfW,IZA January 20, 2015 VERY PRELIMINARY AND VERY INCOMPLETE Abstract The objective of this paper is to

More information

FOURIER ANALYSIS OF THE NUMBER OF PUBLIC LAWS David L. Farnsworth, Eisenhower College Michael G. Stratton, GTE Sylvania

FOURIER ANALYSIS OF THE NUMBER OF PUBLIC LAWS David L. Farnsworth, Eisenhower College Michael G. Stratton, GTE Sylvania FOURIER ANALYSIS OF THE NUMBER OF PUBLIC LAWS 1789-1976 David L. Farnsworth, Eisenhower College Michael G. Stratton, GTE Sylvania 1. Introduction. In an earlier study (reference hereafter referred to as

More information

The Analytics of the Wage Effect of Immigration. George J. Borjas Harvard University September 2009

The Analytics of the Wage Effect of Immigration. George J. Borjas Harvard University September 2009 The Analytics of the Wage Effect of Immigration George J. Borjas Harvard University September 2009 1. The question Do immigrants alter the employment opportunities of native workers? After World War I,

More information

Michael Laver and Ernest Sergenti: Party Competition. An Agent-Based Model

Michael Laver and Ernest Sergenti: Party Competition. An Agent-Based Model RMM Vol. 3, 2012, 66 70 http://www.rmm-journal.de/ Book Review Michael Laver and Ernest Sergenti: Party Competition. An Agent-Based Model Princeton NJ 2012: Princeton University Press. ISBN: 9780691139043

More information

Lab 3: Logistic regression models

Lab 3: Logistic regression models Lab 3: Logistic regression models In this lab, we will apply logistic regression models to United States (US) presidential election data sets. The main purpose is to predict the outcomes of presidential

More information

Honors General Exam Part 1: Microeconomics (33 points) Harvard University

Honors General Exam Part 1: Microeconomics (33 points) Harvard University Honors General Exam Part 1: Microeconomics (33 points) Harvard University April 9, 2014 QUESTION 1. (6 points) The inverse demand function for apples is defined by the equation p = 214 5q, where q is the

More information

INTERNATIONAL ECONOMICS, FINANCE AND TRADE Vol. II - Strategic Interaction, Trade Policy, and National Welfare - Bharati Basu

INTERNATIONAL ECONOMICS, FINANCE AND TRADE Vol. II - Strategic Interaction, Trade Policy, and National Welfare - Bharati Basu STRATEGIC INTERACTION, TRADE POLICY, AND NATIONAL WELFARE Bharati Basu Department of Economics, Central Michigan University, Mt. Pleasant, Michigan, USA Keywords: Calibration, export subsidy, export tax,

More information

Can Mathematics Help End the Scourge of Political Gerrymandering?

Can Mathematics Help End the Scourge of Political Gerrymandering? Can Mathematics Help End the Scourge of Political Gerrymandering? Austin Fry frya2@xavier.edu David Gerberry Xavier University May 4, 2017 Austin Fry (Xavier University) Gerrymandering May 4, 2017 1 /

More information

1. The augmented matrix for this system is " " " # (remember, I can't draw the V Ç V ß #V V Ä V ß $V V Ä V

1. The augmented matrix for this system is    # (remember, I can't draw the V Ç V ß #V V Ä V ß $V V Ä V MATH 339, Fall 2017 Homework 1 Solutions Bear in mind that the row-reduction process is not a unique determined creature. Different people might choose to row reduce a matrix in slightly different ways.

More information

Constraint satisfaction problems. Lirong Xia

Constraint satisfaction problems. Lirong Xia Constraint satisfaction problems Lirong Xia Spring, 2017 Project 1 Ø You can use Windows Ø Read the instruction carefully, make sure you understand the goal search for YOUR CODE HERE Ø Ask and answer questions

More information

! = ( tapping time ).

! = ( tapping time ). AP Statistics Name: Per: Date: 3. Least- Squares Regression p164 168 Ø What is the general form of a regression equation? What is the difference between y and ŷ? Example: Tapping on cans Don t you hate

More information

Chapter 8: Recursion

Chapter 8: Recursion Chapter 8: Recursion Presentation slides for Java Software Solutions for AP* Computer Science 3rd Edition by John Lewis, William Loftus, and Cara Cocking Java Software Solutions is published by Addison-Wesley

More information

EXAMINATION 3 VERSION B "Wage Structure, Mobility, and Discrimination" April 19, 2018

EXAMINATION 3 VERSION B Wage Structure, Mobility, and Discrimination April 19, 2018 William M. Boal Signature: Printed name: EXAMINATION 3 VERSION B "Wage Structure, Mobility, and Discrimination" April 19, 2018 INSTRUCTIONS: This exam is closed-book, closed-notes. Simple calculators are

More information

Tengyu Ma Facebook AI Research. Based on joint work with Rong Ge (Duke) and Jason D. Lee (USC)

Tengyu Ma Facebook AI Research. Based on joint work with Rong Ge (Duke) and Jason D. Lee (USC) Tengyu Ma Facebook AI Research Based on joint work with Rong Ge (Duke) and Jason D. Lee (USC) Users Optimization Researchers function f Solution gradient descent local search Convex relaxation + Rounding

More information

Proving correctness of Stable Matching algorithm Analyzing algorithms Asymptotic running times

Proving correctness of Stable Matching algorithm Analyzing algorithms Asymptotic running times Objectives Proving correctness of Stable Matching algorithm Analyzing algorithms Asymptotic running times Wiki notes: Read after class; I am giving loose guidelines the point is to review and synthesize

More information

Do two parties represent the US? Clustering analysis of US public ideology survey

Do two parties represent the US? Clustering analysis of US public ideology survey Do two parties represent the US? Clustering analysis of US public ideology survey Louisa Lee 1 and Siyu Zhang 2, 3 Advised by: Vicky Chuqiao Yang 1 1 Department of Engineering Sciences and Applied Mathematics,

More information

Practice Questions for Exam #2

Practice Questions for Exam #2 Fall 2007 Page 1 Practice Questions for Exam #2 1. Suppose that we have collected a stratified random sample of 1,000 Hispanic adults and 1,000 non-hispanic adults. These respondents are asked whether

More information

Combining national and constituency polling for forecasting

Combining national and constituency polling for forecasting Combining national and constituency polling for forecasting Chris Hanretty, Ben Lauderdale, Nick Vivyan Abstract We describe a method for forecasting British general elections by combining national and

More information

Department of Economics Working Paper Series

Department of Economics Working Paper Series Accepted for publication in 2003 in Annales d Économie et de Statistique Department of Economics Working Paper Series Segregation and Racial Preferences: New Theoretical and Empirical Approaches Stephen

More information

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem Computational Inelasticity FHLN05 Assignment 2016 A non-linear elasto-plastic problem General instructions A written report should be submitted to the Division of Solid Mechanics no later than 1 November

More information

International trade in the global economy. 60 hours II Semester. Luca Salvatici

International trade in the global economy. 60 hours II Semester. Luca Salvatici International trade in the global economy 60 hours II Semester Luca Salvatici luca.salvatici@uniroma3.it Lesson 14: Migration International Trade: Economics and Policy 2017-18 1 Data on world migration

More information

Illegal Immigration. When a Mexican worker leaves Mexico and moves to the US he is emigrating from Mexico and immigrating to the US.

Illegal Immigration. When a Mexican worker leaves Mexico and moves to the US he is emigrating from Mexico and immigrating to the US. Illegal Immigration Here is a short summary of the lecture. The main goals of this lecture were to introduce the economic aspects of immigration including the basic stylized facts on US immigration; the

More information

Identifying Factors in Congressional Bill Success

Identifying Factors in Congressional Bill Success Identifying Factors in Congressional Bill Success CS224w Final Report Travis Gingerich, Montana Scher, Neeral Dodhia Introduction During an era of government where Congress has been criticized repeatedly

More information

NBER WORKING PAPER SERIES THE PERFORMANCE OF THE PIVOTAL-VOTER MODEL IN SMALL-SCALE ELECTIONS: EVIDENCE FROM TEXAS LIQUOR REFERENDA

NBER WORKING PAPER SERIES THE PERFORMANCE OF THE PIVOTAL-VOTER MODEL IN SMALL-SCALE ELECTIONS: EVIDENCE FROM TEXAS LIQUOR REFERENDA NBER WORKING PAPER SERIES THE PERFORMANCE OF THE PIVOTAL-VOTER MODEL IN SMALL-SCALE ELECTIONS: EVIDENCE FROM TEXAS LIQUOR REFERENDA Stephen Coate Michael Conlin Andrea Moro Working Paper 10797 http://www.nber.org/papers/w10797

More information

30 Transformational Design with Essential Aspect Decomposition: Model-Driven Architecture (MDA)

30 Transformational Design with Essential Aspect Decomposition: Model-Driven Architecture (MDA) Fakultät Informatik, Institut für Software- und Multimediatechnik, Lehrstuhl für Softwaretechnologie 30 Transformational Design with Essential Aspect Decomposition: Model-Driven Architecture () Prof. Dr.

More information

Aspect Decomposition: Model-Driven Architecture (MDA) 30 Transformational Design with Essential. References. Ø Optional: Ø Obligatory:

Aspect Decomposition: Model-Driven Architecture (MDA) 30 Transformational Design with Essential. References. Ø Optional: Ø Obligatory: Fakultät Informatik, Institut für Software- und Multimediatechnik, Lehrstuhl für Softwaretechnologie 30 Transformational Design with Essential Aspect Decomposition: Model-Driven Architecture () Prof. Dr.

More information

REVISIONS IN POPULATION PROJECTIONS AND THEIR IMPLICATIONS FOR THE GROWTH OF THE MALTESE ECONOMY

REVISIONS IN POPULATION PROJECTIONS AND THEIR IMPLICATIONS FOR THE GROWTH OF THE MALTESE ECONOMY REVISIONS IN POPULATION PROJECTIONS AND THEIR IMPLICATIONS FOR THE GROWTH OF THE MALTESE ECONOMY Article published in the Annual Report 2017, pp. 46-51 BOX 2: REVISIONS IN POPULATION PROJECTIONS AND THEIR

More information

Split Decisions: Household Finance when a Policy Discontinuity allocates Overseas Work

Split Decisions: Household Finance when a Policy Discontinuity allocates Overseas Work Split Decisions: Household Finance when a Policy Discontinuity allocates Overseas Work Michael Clemens and Erwin Tiongson Review of Economics and Statistics (Forthcoming) Marian Atallah Presented by: Mohamed

More information

COULD SIMULATION OPTIMIZATION HAVE PREVENTED 2012 CENTRAL FLORIDA ELECTION LINES?

COULD SIMULATION OPTIMIZATION HAVE PREVENTED 2012 CENTRAL FLORIDA ELECTION LINES? Proceedings of the 2013 Winter Simulation Conference R. Pasupathy, S.-H. Kim, A. Tolk, R. Hill, and M. E. Kuhl, eds. COULD SIMULATION OPTIMIZATION HAVE PREVENTED 2012 CENTRAL FLORIDA ELECTION LINES? Jingsheng

More information

PROJECTION OF NET MIGRATION USING A GRAVITY MODEL 1. Laboratory of Populations 2

PROJECTION OF NET MIGRATION USING A GRAVITY MODEL 1. Laboratory of Populations 2 UN/POP/MIG-10CM/2012/11 3 February 2012 TENTH COORDINATION MEETING ON INTERNATIONAL MIGRATION Population Division Department of Economic and Social Affairs United Nations Secretariat New York, 9-10 February

More information

IDE DISCUSSION PAPER No. 517

IDE DISCUSSION PAPER No. 517 INSTITUTE OF DEVELOPING ECONOMIES IDE Discussion Papers are preliminary materials circulated to stimulate discussions and critical comments IDE DISCUSSION PAPER No. 517 Is FTA/EPA Effective for a Developing

More information

Hoboken Public Schools. Algebra I Curriculum

Hoboken Public Schools. Algebra I Curriculum Hoboken Public Schools Algebra I Curriculum Algebra One HOBOKEN PUBLIC SCHOOLS Course Description Algebra I reflects the New Jersey learning standards at the high school level and is designed to give students

More information

Civil Justice Improvements (CJI) Committee. Update #2

Civil Justice Improvements (CJI) Committee. Update #2 A Brief Re-cap from Update #1 Civil Justice Improvements (CJI) Committee Update #2 CJI Committee members recognize that many factors, including the resources available to each court system, influence the

More information

DETERMINANTS OF IMMIGRANTS EARNINGS IN THE ITALIAN LABOUR MARKET: THE ROLE OF HUMAN CAPITAL AND COUNTRY OF ORIGIN

DETERMINANTS OF IMMIGRANTS EARNINGS IN THE ITALIAN LABOUR MARKET: THE ROLE OF HUMAN CAPITAL AND COUNTRY OF ORIGIN DETERMINANTS OF IMMIGRANTS EARNINGS IN THE ITALIAN LABOUR MARKET: THE ROLE OF HUMAN CAPITAL AND COUNTRY OF ORIGIN Aim of the Paper The aim of the present work is to study the determinants of immigrants

More information