machine learning for data streams - cisco · apache scalable advanced massive online analysis...

50
Machine Learning for Data Streams Albert Bifet (@abifet) Cisco-Ecole Polytechnique Symposium 2018, 10 April 2018

Upload: others

Post on 28-May-2020

16 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Machine Learning for Data Streams

Albert Bifet (@abifet)

Cisco-Ecole Polytechnique Symposium 2018, 10 April 2018

Page 2: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Machine Learning• Machine learning is a type of

artificial intelligence (AI) that provides computers with the ability to learn without being explicitly programmed.

• Machine learning focuses on the development of computer programs that can teach themselves to grow and change when exposed to new data.

2

Page 3: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Machine Learning

Imperative Programming

The programmer specifies an explicit

sequences of steps to follow to produce a

result.

Decision: +, -

Data

Page 4: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Machine Learning

Machine Learning Algorithm

Decision: +, -

Data

Page 5: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

AI Systems• According to Nikola Kasabov, AI systems should exhibit the

following characteristics: • Accommodate new problem solving rules incrementally • Adapt online and in real time• Are able to analyze itself in terms of behavior, error and

success. • Learn and improve through interaction with the environment

(embodiment) • Learn quickly from large amounts of data (Big Data) • Have memory-based exemplar storage and retrieval capacities • Have parameters to represent short and long term memory,

age, forgetting, etc.

5

Page 6: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Data Streams

• Maintain models online

• Incorporate data on the fly

• Unbounded training sets

• Resource efficient

• Detect changes and adapts

• Dynamic models

6

Page 7: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Analytic Standard ApproachFinite training sets

Static models 7

Data Set

Model

Classifier Algorithm builds Model

Page 8: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Data Stream ApproachInfinite training sets

Dynamic models 8

D

M

Update Model

D

M

D

M

D

M

D

M

D

M

D

M

D

M

D

M

D

M

D

M

D

M

Page 9: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Importance$of$Online$Learning$$

•  As$spam$trends$change,$it$is$important$to$retrain$the$model$with$newly$judged$data$

•  Previously$tested$using$news$comment$in$Y!Inc$

•  Over$29$days$period,$you$can$see$degrada)on$in$performance$of$base$model$(w/o$ac)ve$learning)$VS$Online$model$(AUC$stands$for$Area$Under$Curve)$

•  Original$paper$$

Adversarial Learning

• Need to retrain!

• Things change over time

• How often?

• Data unused until next update!

• Value of data wasted

9

Page 10: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

AI Challenges

Page 11: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Cédric Villani and Marc Shoenauer

Page 12: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

1. Green AI

Page 13: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine
Page 14: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Green AI

• One pass over the data

• Approximation algorithms: small error ε with high probability 1-δ

• True hypothesis H, and learned hypothesis Ĥ

• Pr[ |H - Ĥ| < ε|H| ] > 1-δ

Page 15: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

2. Explainable AI

Page 16: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine
Page 17: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Decision Tree• Each node tests a features

• Each branch represents a value

• Each leaf assigns a class

• Greedy recursive induction

• Sort all examples through tree

• xi = most discriminative attribute

• New node for xi, new branch for each value, leaf assigns majority class

• Stop if no error | limit on #instances

17

RoadTested?

Mileage?

Age?

NoYes

High

Low

OldRecent

✅ ❌

Car deal?

Page 18: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

HOEFFDING TREE• Sample of stream enough for near optimal decision

• Estimate merit of alternatives from prefix of stream

• Choose sample size based on statistical principles

• When to expand a leaf?

• Let x1 be the most informative attribute,x2 the second most informative one

• Hoeffding bound: split if G(x1) - G(x2) > ε

P. Domingos and G. Hulten, “Mining High-Speed Data Streams,” KDD ’00

=

rR2 ln(1/�)

2n

Page 19: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine
Page 20: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Ensembles of Adaptive Model Rules from High-Speed Data Streams

AMRules

Rules

Rules

����������

���������

A rule is a set of conditions based onattribute values.If all the conditions are true, a prediction ismade based on L.L contains the sufficient statistics to:

expand a rule,make predictions,detect changes,detect anomalies.

6 / 33

Rules• Problem: very large decision trees

have context that is complex andhard to understand

• Rules: self-contained, modular, easier to interpret, no need to cover universe

• 𝓛 keeps sufficient statistics to:

• make predictions

• expand the rule

• detect changes and anomalies

20

Page 21: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Ensembles of Adaptive Model Rules from High-Speed Data Streams

AMRules

Rule sets

Predicting with a rule set

�������

���� ����� �����

E.g: x = [4,�1, 1, 2]

f (x) =X

Rl2S(xi )

✓l yl ,

Prediction consists of a weightedaverage of the predictions madeby the rules that cover x.Weights are inverselyproportional to the MAE of theprediction functions.The uncertainty of a prediction isthe weighted average of theerrors.

✓l =(el + ")�1

X

Rj2S(xi )

(ej + ")�1

12 / 33

Adaptive Model Rules• Ruleset: ensemble of rules

• Rule prediction: mean, linear model

• Ruleset prediction

• Weighted avg. of predictions of rules covering instance x

• Weights inversely proportional to error

• Default rule covers uncovered instances

21

E. Almeida, C. Ferreira, J. Gama. "Adaptive Model Rules from Data Streams." ECML-PKDD ‘13

Page 22: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Adaptive Random Forest • Why Random Forests?

• Off-the-shelf learner

• Good learning performance

Adaptive random forests for evolving data stream classification.

Gomes, H M; Bifet, A; Read, J; Barddal, J P; Enembreck, F; Pfharinger, B; Holmes, G; Abdessalem, T. Machine Learning, Springer, 2017.

• Based on the original Random Forest by Breiman

22

Page 23: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

3. Ethical Issues

Page 24: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine
Page 25: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Should data have an expiration date?

Page 26: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Other AI Challenges

Page 27: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

1. Open AI

Page 28: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

MOA

• {M}assive {O}nline {A}nalysis is a framework for online learning from data streams.

• It is closely related to WEKA

• It includes a collection of offline and online as well as tools for evaluation:

• classification, regression

• clustering, frequent pattern mining

• Easy to extend, design and run experiments

{M}assive {O}nline {A}nalysisMOA (Bifet et al. 2010)

{M}assive {O}nline {A}nalysis is a framework for onlinelearning from data streams.

It is closely related to WEKAIt includes a collection of offline and online as well astools for evaluation:

classification, regressionclusteringfrequent pattern mining

Easy to extendEasy to design and run experiments

Page 29: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

29

Page 30: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

OpenML

30

Page 31: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

2. Distributed Data Stream Mining

Page 32: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Streaming

Vision

32

Distributed

IoT Big Data Stream Mining

Page 33: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

APACHE SAMOA

33

http://samoa-project.net

Data Mining

Distributed

Batch

Hadoop

Mahout

Stream

Storm, S4, Samza

SAMOA

Non Distributed

Batch

R, WEKA,…

Stream

MOA

G. De Francisci Morales, A. Bifet: “SAMOA: Scalable Advanced Massive Online Analysis”. JMLR (2014)

Page 34: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

SAMOA ARCHITECTURE

5 CREATING A FLINK ADAPTER ON APACHE SAMOA

5 Creating a Flink Adapter on Apache SAMOA

Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform formining data streams with the use of distributed streaming Machine Learning al-gorithms, which can run on top of different Data Stream Processing Engines(DSPE)s.

As depicted in Figure 20, Apache SAMOA offers the abstractions and APIs fordeveloping new distributed ML algorithms to enrich the existing library of state-of-the-art algorithms [27, 28]. Moreover, SAMOA provides the possibility of inte-grating new DSPEs, allowing in that way the ML programmers to implement analgorithm once and run it in different DSPEs [28].

An adapter for integrating Apache Flink into Apache SAMOA was implementedin scope of this master thesis, with the main parts of its implementation beingaddressed in this section. With the use of our adapter, ML algorithms can beexecuted on top of Apache Flink. The implemented adapter will be used for theevaluation of the ML pipelines and HT algorithm variations.

Figure 20: Apache SAMOA’s high level architecture.

5.1 Apache SAMOA Abstractions

Apache SAMOA offers a number of abstractions which allow users to implementany distributed streaming ML algorithms in a platform independent way. The mostimportant abstractions of Apache SAMOA are presented below [27, 28].

40

Page 35: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Stats

Stats

Stats

Stream

Model

Attributes

Splits

Vertical Partitioning

35

Single attribute tracked in

single node

N. Kourtellis, G. De Francisci Morales, A. Bifet, A. Murdopo: “VHT: Vertical Hoeffding Tree”, 2016 Big Data Conference 2016

Page 36: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

3. Learning Fast and Slow

Page 37: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine
Page 38: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine
Page 39: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Learning Fast and Slow

Page 40: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Learning Fast and Slow

Page 41: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Learning Fast and Slow

Page 42: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Learning Fast and Slow

Page 43: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Learning Fast and Slow

Page 44: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

scikit-multiflow

44

Page 45: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

scikit-multiflow

Page 46: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

scikit-multiflow

Page 47: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Summary• Green AI

• Explainable AI

• Ethical Issues

• Open AI

• Distributed Data Stream Mining

• Learning Fast and Slow

Page 48: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

48

Page 49: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Thanks!

49

@abifet

Page 50: Machine Learning for Data Streams - Cisco · Apache Scalable Advanced Massive Online Analysis (SAMOA) is a platform for mining data streams with the use of distributed streaming Machine

Machine Learning for Data Streams

Albert Bifet (@abifet)

Cisco-Ecole Polytechnique Symposium 2018, 10 April 2018