Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Big Data and Predictive Modeling

Big Data and Predictive Modeling

Web We Can 2015

Olivier Grisel

March 21, 2015
Tweet

More Decks by Olivier Grisel

Other Decks in Technology

Transcript

  1. Triumph of the Nerds: Nate Silver Wins in 50 States

    http://mashable.com/2012/11/07/nate-silver-wins/
  2. Triumph of the Nerds: Nate Silver Wins in 50 States

    http://mashable.com/2012/11/07/nate-silver-wins/
  3. Goals of this talk • What Big Data actually is

    or isn’t • Introduce predictive modeling concepts • Contrast predictive analytics vs descriptive analytics
  4. – Wikipedia “Big data is a blanket term for any

    collection of data sets so large and complex that it becomes difficult to process using on-hand database management tools or traditional data processing applications.”
  5. Not Big Data • Data that fits on a spreadsheet

    • Data that can be analyzed in RAM (< 10 GB) • Data operations that can be performed quickly by a traditional database, e.g. single node PostgreSQL server
  6. Canonical Big Data problem: indexing the Web • Inverted index

    on tera bytes of text data • Process each HTML page as a URL + bag of words • For each word, aggregate the list of page URLs • 2 billion HTML pages: 100TB >10 days just to read sequentially
  7. Other Big Data examples • GSM location event log from

    telco • Transaction log of a big retail network • Raw traffic data on a large website • Activity records for a service with 10s of millions of users
  8. Not Big Data • Polls data (~10K data points) •

    Census data (~10M data points) • Real estate transactions data (~10M data points) • Any dataset publicly available for download
  9. Type # rooms Surface m2 Floor Public Transports Apartment 3

    65 2 Yes House 5 110 NA No Duplex 4 95 4 Yes Sold 300k 1.5M 2.2M
  10. Type # rooms Surface m2 Floor Public Transports Apartment 3

    65 2 Yes House 5 110 NA No Duplex 4 95 4 Yes features samples Sold 300k 1.5M 2.2M target
  11. Type # rooms Surface m2 Floor Public Transports Apartment 3

    65 2 Yes House 5 110 NA No Duplex 4 95 4 Yes features samples Sold 300k 1.5M 2.2M target Apartment 2 35 3 Yes ?
  12. Predictive Modeling • Automated predictions of outcome on new data

    • Alternative to hard-coded rules written by experts • Extract the structure of historical data • Statistical tools to summarize the training data into an executable predictive model
  13. Training text docs images sounds transactions Labels Machine Learning Algorithm

    Model Predictive Modeling Data Flow Feature vectors
  14. New text doc image sound transaction Model Expected Label Predictive

    Modeling Data Flow Feature vector Training text docs images sounds transactions Labels Machine Learning Algorithm Feature vectors
  15. Descriptive Statistics • Ex: Sales by (day, months, year) x

    region • Graphical visualization: get insights, tell a story to explain what’s happening in the data • Realm of Business Intelligence: reports & dashboard for managers • A wrong decision can be very costly • Small number of important decisions made by a human
  16. Predictive Statistics • Ex: Movie recommendations or targeted ads •

    Embedded in a user service to make it more useful / attractive / profitable • A wrong individual decision is not costly • Large number of small automated decisions • Humans would not be fast enough to make the predictions
  17. Mixed models • Predictive modeling to identify interesting subsets of

    the data • Ex: Fraud detection, churn forecasting • Help human decision makers focus on important cases • Human expert feedback to improve predictive models
  18. • Big Data ≠ Predictive Analytics • Predictive Analytics •

    Automated decision making embedded in products (e.g. recommenders) • Individual bad decisions are typically not costly • Descriptive Analytics • Business Intelligence: human decision making • Individual bad decisions can be very costly
  19. Back to the Regionator What if we did not have

    census data on daily mobility?
  20. Back to the Regionator • Use raw daily telco logs

    • Group By (phone, day) to extract daily trips • Join By GPS coordinates to “departement” names • Filter out small trips • Group By (home, work) “departements” • Count
  21. New text doc image sound transaction Model Expected Label Small

    data Training text docs images sounds transactions Labels Machine Learning Algorithm Feature vectors Feature vector
  22. New text doc image sound transaction Model Expected Label Small

    / Medium data Training text docs images sounds transactions Labels Machine Learning Algorithm Feature vectors Feature vector
  23. New text doc image sound transaction Model Expected Label Small

    / Medium data with Training text docs images sounds transactions Labels Machine Learning Algorithm Feature vectors Feature vector
  24. New text doc image sound transaction Model Expected Label Small

    / Medium data with Training text docs images sounds transactions Labels Machine Learning Algorithm Feature vectors Feature vector
  25. Model Expected Label Big data with Machine Learning Algorithm New

    text doc image sound transaction Training text docs images sounds transactions Labels Feature vectors Feature vector
  26. Model Expected Label Big data with Machine Learning Algorithm New

    text doc image sound transaction Training text docs images sounds transactions Labels Feature vectors Feature vector
  27. Model Expected Label Big data with Machine Learning Algorithm New

    text doc image sound transaction Training text docs images sounds transactions Labels Feature vectors Feature vector
  28. From Big to Small • Feature extraction often shrinks data

    • Filter / Join / Group By / Count • Machine Learning performed on aggregates • Sampling for fast in-memory iterative modeling
  29. Type # rooms Surface (m2) Floor Public Transp. Apart. 3

    65 2 Yes House 5 110 NA No Duplex 4 95 4 Yes features samples
  30. Type # rooms Surface (m2) Floor Public Transp. School (km)

    Flood plain Apart. 3 65 2 Yes 1.0 No House 5 110 NA No 25.0 Yes Duplex 4 95 4 Yes 0.5 No features samples
  31. • Parametric e.g. linear model (traditional stats) vs Non-parametric e.g.

    Random Forests, Neural Networks (Machine Learning) • Understand a model with 10% accuracy vs blindly trust a model with 90% accuracy • Simple models e.g. F = m a, F = - G (m1 + m2) / r^2 will not become false(r) because of big data • New problems can be tackled: computer vision, speech recognition, natural language understanding
  32. • the (experimental) scientific method introduced by Karl Popper is

    based on the falsifiability of formulated hypotheses • theory is correct as long as past predictions hold in new experiments • machine learning train-validation-test splits and cross-validation is similar in spirit • ml model is just a complex theory: correct as long as its predictions still hold