• No results found

Big Data Analysis. Introduction to MultiVariate Analysis. Troels C. Petersen (NBI)

N/A
N/A
Protected

Academic year: 2022

Share "Big Data Analysis. Introduction to MultiVariate Analysis. Troels C. Petersen (NBI)"

Copied!
31
0
0

Loading.... (view fulltext now)

Full text

(1)

Big Data Analysis

Introduction to MultiVariate Analysis

Troels C. Petersen (NBI)

(2)

Dimensionality and Complexity

Humans are good at seeing/understanding data in few dimensions!

However, as dimensionality grows, complexity grows exponentially (“curse of dimensionality”), and humans are generally not geared for such challenges.

Low dim. High dim.

Linear Humans:

Computers: Humans: ÷

Computers:

Non-

linear Humans:

Computers: (✓) Humans: ÷

Computers: (✓)

Computers, on the other hand, are OK with high dimensionality, albeit the growth of the challenge, but have a harder time facing non-linear issues.

However, through smart algorithms, computers have learned to deal with it all!

(3)

Data Mining

Seeing patterns in data and using it!

Data mining is the process of extracting patterns from data. As more data are gathered, with the amount of data doubling every three years, data

mining is becoming an increasingly important tool to transform these data into information. It is commonly used in a wide range of profiling practices, such as marketing, surveillance, fraud detection and scientific discovery.

[Wikipedia, Introduction to Data Mining]

(4)

Classification vs. Regression

Unsupervised learning vs. supervised

Machine Learning can be supervised (you have correctly labelled examples) or unsupervised (you don’t)… [or reinforced]. Following this, one can be using ML to either classify (is it A or B?) or for regression (estimate of X).

(5)

Classification vs. Regression

Unsupervised learning vs. supervised

Machine Learning can be supervised (you have correctly labelled examples) or unsupervised (you don’t)… [or reinforced]. Following this, one can be using ML to either classify (is it A or B?) or for regression (estimate of X).

We will be mostly on this side!

(6)

Classification/Hypothesis

Null Hypothesis Alternative Hypothesis

(7)

Classification/Hypothesis

Null Hypothesis Alternative Hypothesis

Machine Learning typically enables

a better separation between hypothesis

(8)

Simple Example

Problem: You want to figure out a method for getting sample that is 95% male!

Solution: Gather height data from 10000 people, Estimate cut with 95% purity!

(9)

Simple Example

Additional data: The data you find also contains shoe size!

How to use this? Well, it is more information, but should you cut on it?

The question is, what is the best way to use this (possibly correlated) information!

(10)

Simple Example

So we look if the data is correlated, and consider the options:

Cut on each var?

Poor efficiency!

Advanced cut?

Clumsy and

hard to implement

Combine var?

Smart and promising

The latter approach is the Fisher discriminant!

It has the advantage of being simple and applicable in many dimensions easily!

(11)

Separating data

Fisher’s friend, Anderson, came home from picking Irises in the Gaspe peninsula...

(12)

Fisher’s Linear Discriminant

You want to separate two types/classes (A and B) of events using several measurements.

Q: How to combine the variables?

A: Use the Fisher Discriminant:

Q: How to choose the values of w?

A: Inverting the covariance matrices:

This can be calculated analytically, and incorporates the linear correlations into the separation capability.

F = w 0 + ~ w · ~x

~

w = (⌃

A

+ ⌃

B

)

1

(~ µ

A

~ µ

B

)

(13)

Fisher Discriminant

You want to separate two types/classes (A and B) of events using several measurements.

Q: How to combine the variables?

A: Use the Fisher Discriminant:

Q: How to choose the values of w?

A: Inverting the covariance matrices:

This can be calculated analytically, and

F = w 0 + ~ w · ~x

~

w = (⌃

A

+ ⌃

B

)

1

(~ µ

A

~ µ

B

)

(14)

Fisher Discriminant

Executive summary:

Fisher’s Discriminant uses a linear combination of variables to give a single variable with the maximum possible separation (for linear combinations!).

It is for all practical purposes a projection (in a Euclidian space)!

(15)

Fisher Discriminant

The details of the formula are outlined below:

~

w = (⌃ A + ⌃ B ) 1 (~ µ A ~ µ B )

F = w + ~ w · ~x F is what you base Given weights (w),

you take your input variables (x) and combine them

For each input variable (x), you calculate the mean (µ), and form a vector of these.

Using the input variables (x), you calculate the covariance matrix (Σ) for each species (A/B), add these and invert.

You have two samples, A and B,

that you want to separate.

(16)

Non-linear MVAs

While the Fisher Discriminant uses all separations and linear correlations, it does not perform optimally, when there are non-linear correlations present:

If the PDFs of signal and background are known, then one can use a likelihood.

But this is very rarely the case, and hence one should move on to the Fisher.

However, if correlations are non-linear, more “tough” methods are needed...

(17)

Todays goal: Introduction

MultiVariate Analysis (MVA) is a huge subject, and it is impossible to go into any detail in one day.

The goal of todays exercise is to:

• Give you an introduction to more advanced MVA methods.

• Be able to recognise problems, where MVA is applicable.

• Wet your appetite for advanced MVA methods.

So let us dive into the world of extracting knowledge from information.

(18)

Neural Networks

Can become very complex.

Good for continuous problems.

Sometimes hard to train!

Can be used for images.

Easily produces multiple outputs.

(19)

(Boosted) Decision Trees

Can become very complex.

Good for discrete problems.

“Good for all problems!!!”

Not always highest efficiency.

Boosting adds to separation.

(20)

In machine learning and related fields, artificial neural networks (ANNs) are

computational models inspired by an animal's central nervous systems (in particular the brain) which is capable of machine learning as well as pattern recognition.

Neural networks have been used to solve a wide variety of tasks that are hard to solve using ordinary rule-based programming, including computer vision and speech recognition.

[Wikipedia, Introduction to Artificial Neural Network]

Neural Networks (NN)

(21)

Neural Networks

t(x) = s ⇣

a

0

+ X

a

i

x

i

t(x) = s ⇣

a

i

+ X

a

i

h

i

(x) ⌘ h

i

(x) = s ⇣

w

i0

+ X

w

ij

x

j

s(x) = 1

1 + e a(x x0) Neural Networks combine the input

variables using a “activation” function s(x) to assign, if the variable indicates signal or background.

The simplest is a single layer perceptron:

This can be generalised to a multilayer perceptron:

Activation function can be any

(22)

Boosted Decision Trees (BDT)

Decision tree learning uses a decision tree as a predictive model which maps observations about an item to conclusions about the item's target value. It is one of the predictive modelling approaches used in statistics, data mining and machine learning.

[Wikipedia, Introduction to Decision Tree Learning]

(23)

Boosted Decision Trees

A decision tree divides the parameter space, starting with the maximal

separation. In the end each part has a probability of being signal or

background.

Works in 95+% of all problems!

Fully uses non-linear correlations.

But BDTs require a lot of data for training, and is sensitive to

overtraining (see next slide).

Overtraining can be reduced by limiting the number of nodes and number of trees.

(24)

Boosting...

There is no reason, why you can not have more trees. Each tree is a simple classifier, but many can be combined!

To avoid N identical trees, one assigns a higher weight to events that are hard to classify, i.e. boosting:

First classifier

Parameters in event N

Boost weight

Individual tree

(25)

Test for simple overtraining

In order to test for overtraining, half the sample is used for training, the other for testing:

(26)

Test for simple overtraining

In order to test for overtraining, half the sample is used for training, the other for testing:

However, overtraining in itself is not a “sin”,

as long as one is aware that the performance

in a new dataset will follow that of the test

sample, NOT the training sample.

(27)

Real overtraining

The “real” limit of overtraining, is when the Cross Validation (CV) error starts to grow!

(28)

Method’s (dis-)advantages

(29)

Example of method comparison

Left figure shows the distribution of signal and background used for test.

Right figure shows the resulting separation using various MVA methods.

The theoretical limit is known from the Neyman-Pearson lemma using the (known/correct) PDFs in a likelihood.

ROC curves:

(30)

Which method to use?

There is no good/simple answer to this, though people have tried, e.g.:

(31)

Which method to use?

There is no good/simple answer to this, though people have tried, e.g.:

References

Related documents

There is no mediator between man and {his/her} salvation." "Salvation is the freeing of the soul from its bodily fetters, becoming a God through knowledge and wisdom, controlling

Second team honorees included junior catcher Mike Meeuwsen of Grand Rapids, Mich., and sophomore second baseman Matt Klein of DeWitt, Mich.. Ruby and Labbe were also named

Como veremos más adelante (§ 4.3.2), este enfoque, que con- figura la violencia de género como doblemente unidireccional, respecto a los autores (solo hombres) y a las víctimas

one relative (apart from the mother) does improve the survival rates of children, but that 11?. relatives differ in whether they are consistently beneficial to children

The cost for cosmetology transfer students is $11 .30 per hour and $10 .00 per hour for barbering students to attended at PAUL MITCHELL THE SCHOOL Fort Myers; this does not include

The following text will be organized in the subsequent order: section two presents the main characteristics of China’s trade pattern with Argentina and Brazil, and discusses

Consequently, higher productiv- ity growth in the European milk production and improvements in productivity in the dairy sector in developing countries might have a strong impact

Some NAT boxes/routers allow the establishment of IPv6 tunnels from systems in the private LAN (using private IPv4 addresses) to routers or tunnel servers in the public Internet..