SlideShare a Scribd company logo
1 of 78
Download to read offline
Data Wrangling For
Kaggle Data Science
Competitions
An Etude
April 9, 2014
@ksankar // doubleclix.wordpress.com
etude
http://en.wikipedia.org/wiki/%C3%89tude, http://www.etudesdemarche.net/articles/etudes-sectorielles.htm, 	

http://upload.wikimedia.org/wikipedia/commons/2/26/La_Cour_du_Palais_des_%C3%A9tudes_de_l%E2%80%99%C3%89cole_des_beaux-arts.jpg	

We will focus on “short”, “acquiring
skill” & “having fun” !
Agenda [1 of 3]
o Intro, Goals, Logistics, Setup [10] [1:20-1:30)
o Anatomy of a Kaggle Competition [60] [1:30-2:30)
•  Competition Mechanics
•  Register, download data, create sub directories
•  Trial Run : Submit Titanic
o Algorithms for the Amateur Data Scientist [20] [2:30-2:50)
•  Algorithms, Tools & frameworks in perspective
•  “Folk Wisdom”
o Break (30 Min) [2:50-3:10)
Agenda [2 of 3]
o  Model Evaluation & Interpretation [30] [3:10-3:40)
•  Confusion Matrix, ROC Graph
o  Session 1 : The Art of a Competition – DS London + Scikit-learn[30 min] [3:40-4:10)
•  Dataset Organization
•  Analytics Walkthrough
•  Algorithms - CART, RF, SVM
•  Feature Extraction
•  Hands-on Analytics programming of the challenge
•  Submit entry
o  Session 2 : The Art of a Competition – ASUS,PAKDD 2014 [20 min] [4:10-4:30)
•  Dataset Organization
•  Analytics Walkthrough, Transformations
Agenda [3 of 3]
o Questions, Discussions & Slack [10 min] [4:30-4:40]
o Schedule
•  12:20 – 1:20 : Lunch
•  1:20 – 4:40 : Tutorial (1:20-2:50;2:50-3:10:Break;3:10-4:40)
Overload Warning … There is enough material for a week’s training … which is good & bad !	

Read thru at your pace, refer, ponder & internalize
Goals & Assumptions
o  Goals:
•  Get familiar with the mechanics of Data Science Competitions
•  Explore the intersection of Algorithms, Data, Intelligence, Inference & Results
•  Discuss Data Science Horse Sense ;o)
o  At the end of the tutorial you should have :
•  Submitted entries for 3 competitions
•  Applied Algorithms on Kaggle Data
•  CART, RF
•  Linear Regression
•  SVM
•  Explored Data, have a good understanding of the Analytics Pipeline viz.
collect-store-transform-model-reason-deploy-visualize-recommend-infer-
explore
•  Knowledge of Model Evaluation
•  Cross Validation, ROC Curves
Close Encounters
—  1st	
  
◦  This Tutorial
—  2nd	
  
◦  Do More Hands-on Walkthrough
—  3nd	
  
◦  Listen To Lectures
◦  More competitions …
Warm-up
Setup
o  Install anaconda
o  update (if needed)
•  conda update conda
•  conda update ipython
•  condo update python
o  conda install pydot
o  ipython notebook –-plab=inline
o  Go to ipython tab in the browser
o  Import packages & print version #
Tutorial Materials
o Github : https://github.com/xsankar/freezing-bear
o Clone or download zip
o Open terminal
o cd ~/freezing-bear/notebooks
o ipython notebook –pylab=inline
o Click on ipython dashboard
o Just look thru the ipython notebooks
Tutorial Data
o Setup an account in Kaggle (www.kaggle.com)
o We will be using the data from 3 Kaggle competitions
①  Titanic: Machine Learning from Disaster
•  Download data from http://www.kaggle.com/c/titanic-gettingStarted
•  Directory ~/freezing-bear/notebooks/titanic
②  Data Science London + Scikit-learn
•  Download data from http://www.kaggle.com/c/data-science-london-scikit-learn
•  Directory ~/freezing-bear/notebooks/dsl
③  PAKDD 2014 - ASUS Malfunctional Components Prediction
•  Download data from http://www.kaggle.com/c/pakdd-cup-2014
•  Directory ~/freezing-bear/notebooks/asus
Anatomy Of a Kaggle
Competition
Kaggle Data Science Competitions
o  Hosts Data Science Competitions
o  Competition Attributes:
•  Dataset
•  Train
•  Test (Submission)
•  Final Evaluation Data Set (We don’t
see)
•  Rules
•  Time boxed
•  Leaderboard
•  Evaluation function
•  Discussion Forum
•  Private or Public
Titanic	
  Passenger	
  Metadata	
  
•  Small	
  
•  3	
  Predictors	
  
•  Class	
  
•  Sex	
  
•  Age	
  
•  Survived?	
  
http://www.ohgizmo.com/2007/03/21/romain-jerome-titanic
http://flyhigh-by-learnonline.blogspot.com/2009/12/at-movies-sherlock-holmes-2009.html
Data Science London + Sci-Kit learn Competition
PAKDD 2014
Predict Component Failures … ASUS
Train.csv	
  
Taken	
  from	
  Titanic	
  Passenger	
  
Manifest	
  
Variable	
   Descrip-on	
  
Survived	
   0-­‐No,	
  1=yes	
  
Pclass	
   Passenger	
  Class	
  (	
  1st,2nd,3rd	
  )	
  
Sibsp	
   Number	
  of	
  Siblings/Spouses	
  Aboard	
  
Parch	
   Number	
  of	
  Parents/Children	
  Aboard	
  
Embarked	
   Port	
  of	
  EmbarkaLon	
  
o  C	
  =	
  Cherbourg	
  
o  Q	
  =	
  Queenstown	
  
o  S	
  =	
  Southampton	
  
Titanic	
  Passenger	
  Metadata	
  
•  Small	
  
•  3	
  Predictors	
  
•  Class	
  
•  Sex	
  
•  Age	
  
•  Survived?	
  
Test.csv	
  
Submission
o 418 lines; 1st column should have 0 or 1 in each line
o Evaluation:
•  % correctly predicted
Approach
o  This is a classification problem - 0 or 1
o  Troll the forums !
o  Opportunity for us to try different algorithms & compare them
•  Simple Model
•  CART[Classification & Regression Tree]
•  Greedy, top-down binary, recursive partitioning that divides feature space into sets
of disjoint rectangular regions
•  RF
•  Different parameters
•  SVM
•  Multiple kernels
•  Table the results
o  Use cross validation to predict our model performance & correlate with what Kaggle
says
http://www.dabi.temple.edu/~hbling/8590.002/Montillo_RandomForests_4-2-2009.pdf
Simple Model – Our First Submission
o #1 : Simple Model (M=survived)
o #2 : Simple Model (F=survived)
https://www.kaggle.com/c/titanic-gettingStarted/details/getting-started-with-python
Refer	
  to	
  iPython	
  notebook	
  <1-­‐Intro-­‐To-­‐Kaggle>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
#3 : Simple CART Model
o CART (Classification & Regression Tree)
http://scikit-learn.org/stable/modules/tree.html
#4 : Random Forest Model
o  https://www.kaggle.com/wiki/GettingStartedWithPythonForDataScience
•  Chris Clark http://blog.kaggle.com/2012/07/02/up-and-running-with-python-my-first-kaggle-entry/
o  https://www.kaggle.com/c/titanic-gettingStarted/details/getting-started-with-random-forests
o  https://github.com/RahulShivkumar/Titanic-Kaggle/blob/master/titanic.py
#5 : SVM
o Multiple Kernels
o kernel = ‘rbf’ #Radial Basis Function
o Kernel = ‘sigmoid’
o  agconti's blog - Ultimate Titanic !
o  http://fastly.kaggle.net/c/titanic-gettingStarted/forums/t/5105/ipython-notebook-tutorial-for-titanic-machine-learning-from-disaster/29713
Feature Engineering - Homework
o  Add attribute : Age
•  In train 714/891 have age; in test 332/418 have age
•  Missing values can be just Mean Age of all passengers
•  We could be more precise and calculate Mean Age based on Title
(Ms,Mrs,Master et al)
•  Box plot age
o  Add attribute : Mother, Family size et al
o  Feature engineering ideas
•  http://www.kaggle.com/c/titanic-gettingStarted/forums/t/6699/sharing-
experiences-about-data-munging-and-classification-steps-with-python
o  More ideas at http://statsguys.wordpress.com/2014/01/11/data-analytics-for-beginners-pt-2/
o  And https://github.com/wehrley/wehrley.github.io/blob/master/SOUPTONUTS.md
o  Also Learning scikit-learn: Machine Learning in Python, By: Raúl Garreta; Guillermo
Moncecchi, Publisher: Packt Publishing has more ideas on feature selection et al
What does it mean ? Let us ponder ….
o  We have a training data set representing a domain
•  We reason over the dataset & develop a model to predict outcomes
o  How good is our prediction when it comes to real life scenarios ?
o  The assumption is that the dataset is taken at random
•  Or Is it ? Is there a Sampling Bias ?
•  i.i.d ? Independent ? Identically Distributed ?
•  What about homoscedasticity ? Do they have the same finite variance ?
o  Can we assure that another dataset (from the same domain) will give us the same
result ?
o  Will our model & it’s parameters remain the same if we get another data set ?
o  How can we evaluate our model ?
o  How can we select the right parameters for a selected model ?
Algorithms for the
Amateur Data Scientist
“A towel is about the most massively useful thing an interstellar hitchhiker can have … any
man who can hitch the length and breadth of the Galaxy, rough it … win through, and still
know where his towel is, is clearly a man to be reckoned with.”
- From The Hitchhiker's Guide to the Galaxy, by Douglas Adams.
Algorithms ! The Most Massively useful thing an Amateur Data Scientist can have …
2:30
Ref: Anthony’s Kaggle Presentation
Data Scientists apply different techniques
•  Support Vector Machine
•  adaBoost
•  Bayesian Networks
•  Decision Trees
•  Ensemble Methods
•  Random Forest
•  Logistic Regression
•  Genetic Algorithms
•  Monte Carlo Methods
•  Principal Component Analysis
•  Kalman Filter
•  Evolutionary Fuzzy Modelling
•  Neural Networks
Quora
•  http://www.quora.com/What-are-the-top-10-data-mining-or-machine-learning-algorithms
Algorithm spectrum
o  Regression
o  Logit
o  CART
o  Ensemble :
Random
Forest
o  Clustering
o  KNN
o  Genetic Alg
o  Simulated
Annealing	
  
o  Collab
Filtering
o  SVM
o  Kernels
o  SVD
o  NNet
o  Boltzman
Machine
o  Feature
Learning	
  
Machine	
  Learning	
   Cute	
  Math	
  
Ar0ficial	
  
Intelligence	
  
Classifying Classifiers
Statistical	
   Structural	
  
Regression	
   Naïve	
  
Bayes	
  
Bayesian	
  
Networks	
  
Rule-­‐based	
   Distance-­‐based	
  
Neural	
  
Networks	
  
Production	
  Rules	
   Decision	
  Trees	
  
Multi-­‐layer	
  
Perception	
  
Functional	
   Nearest	
  Neighbor	
  
Linear	
   Spectral	
  
Wavelet	
  
kNN	
   Learning	
  vector	
  
Quantization	
  
Ensemble	
  
Random	
  Forests	
  
Logistic	
  
Regression1	
  
SVM	
  Boosting	
  
1Max	
  Entropy	
  Classifier	
  	
  
Ref: Algorithms of the Intelligent Web, Marmanis & Babenko
Classifiers	
  
Regression	
  
Continuous
Variables
Categorical 
Variables
Decision	
  
Trees	
  
k-­‐NN(Nearest	
  
Neighbors)	
  
Bias

Variance

Model Complexity

Over-fitting

BoosLng	
  Bagging	
  
CART	
  
Data Science
“folk knowledge”
Data Science “folk knowledge” (1 of A)
o  "If you torture the data long enough, it will confess to anything." – Hal Varian, Computer
Mediated Transactions
o  Learning = Representation + Evaluation + Optimization
o  It’s Generalization that counts
•  The fundamental goal of machine learning is to generalize beyond the
examples in the training set
o  Data alone is not enough
•  Induction not deduction - Every learner should embody some knowledge
or assumptions beyond the data it is given in order to generalize beyond
it
o  Machine Learning is not magic – one cannot get something from nothing
•  In order to infer, one needs the knobs & the dials
•  One also needs a rich expressive datasetA few useful things to know about machine learning - by Pedro Domingos
http://dl.acm.org/citation.cfm?id=2347755
Data Science “folk knowledge” (2 of A)
o  Over fitting has many faces
•  Bias – Model not strong enough. So the learner has the tendency to learn the
same wrong things
•  Variance – Learning too much from one dataset; model will fall apart (ie much
less accurate) on a different dataset
•  Sampling Bias
o  Intuition Fails in high Dimensions –Bellman
•  Blessing of non-conformity & lower effective dimension; many applications
have examples not uniformly spread but concentrated near a lower dimensional
manifold eg. Space of digits is much smaller then the space of images
o  Theoretical Guarantees are not What they seem
•  One of the major developments o f recent decades has been the realization that
we can have guarantees on the results of induction, particularly if we are
willing to settle for probabilistic guarantees.
o  Feature engineering is the Key
A few useful things to know about machine learning - by Pedro Domingos
http://dl.acm.org/citation.cfm?id=2347755
Data Science “folk knowledge” (3 of A)
o  More Data Beats a Cleverer Algorithm
•  Or conversely select algorithms that improve with data
•  Don’t optimize prematurely without getting more data
o  Learn many models, not Just One
•  Ensembles ! – Change the hypothesis space
•  Netflix prize
•  E.g. Bagging, Boosting, Stacking
o  Simplicity Does not necessarily imply Accuracy
o  Representable Does not imply Learnable
•  Just because a function can be represented does not mean
it can be learned
o  Correlation Does not imply Causation
o  http://doubleclix.wordpress.com/2014/03/07/a-glimpse-of-google-nasa-peter-norvig/
o  A few useful things to know about machine learning - by Pedro Domingos
§  http://dl.acm.org/citation.cfm?id=2347755
Data Science “folk knowledge” (4 of A)
o  The simplest hypothesis that fits the data is also the most
plausible
•  Occam’s Razor
•  Don’t go for a 4 layer Neural Network unless
you have that complex data
•  But that doesn’t also mean that one should
choose the simplest hypothesis
•  Match the impedance of the domain, data & the
algorithms
o  Think of over fitting as memorizing as opposed to learning.
o  Data leakage has many forms
o  Sometimes the Absence of Something is Everything
o  [Corollary] Absence of Evidence is not the Evidence of
Absence
New to Machine Learning? Avoid these three mistakes, James Faghmous
https://medium.com/about-data/73258b3848a4
§  Simple	
  Model	
  
§  High	
  Error	
  line	
  that	
  cannot	
  be	
  
compensated	
  with	
  more	
  data	
  
§  Gets	
  to	
  a	
  lower	
  error	
  rate	
  with	
  less	
  data	
  
points	
  
§  Complex	
  Model	
  
§  Lower	
  Error	
  Line	
  
§  But	
  needs	
  more	
  data	
  points	
  to	
  reach	
  
decent	
  error	
  	
  
Ref: Andrew Ng/Stanford, Yaser S./CalTech
Check your assumptions
o  The decisions a model makes, is directly related to the it’s assumptions about the
statistical distribution of the underlying data
o  For example, for regression one should check that:
① Variables are normally distributed
•  Test for normality via visual inspection, skew & kurtosis, outlier inspections via
plots, z-scores et al
② There is a linear relationship between the dependent & independent
variables
•  Inspect residual plots, try quadratic relationships, try log plots et al
③ Variables are measured without error
④ Assumption of Homoscedasticity
§  Homoscedasticity assumes constant or near constant error variance
§  Check the standard residual plots and look for heteroscedasticity
§  For example in the figure, left box has the errors scattered randomly around zero; while the
right two diagrams have the errors unevenly distributed
Jason W. Osborne and Elaine Waters, Four assumptions of multiple regression that researchers should always test,
http://pareonline.net/getvn.asp?v=8&n=2
Data Science “folk knowledge” (5 of A)
Donald Rumsfeld is an armchair Data Scientist !
http://smartorg.com/2013/07/valuepoint19/
The
World

Knowns	
  
	
  
	
  
	
  
	
  
	
  
Unknowns	
  
You
UnKnown	
   Known	
  
o  Others	
  know,	
  you	
  don’t	
   o  What	
  we	
  do	
  
o  Facts,	
  outcomes	
  or	
  
scenarios	
  we	
  have	
  not	
  
encountered,	
  nor	
  
considered	
  
o  “Black	
  swans”,	
  outliers,	
  
long	
  tails	
  of	
  probability	
  
distribuLons	
  
o  Lack	
  of	
  experience,	
  
imaginaLon	
  
o  PotenLal	
  facts,	
  
outcomes	
  we	
  
are	
  aware,	
  but	
  
not	
  	
  with	
  
certainty	
  
o  StochasLc	
  
processes,	
  
ProbabiliLes	
  
o  Known Knowns
o  There are things we know that we know
o  Known Unknowns
o  That is to say, there are things that we
now know we don't know
o  But there are also Unknown Unknowns
o  There are things we do not know we
don't know
Data Science “folk knowledge” (6 of A) - Pipeline
o  Scalable	
  Model	
  
Deployment	
  
o  Big	
  Data	
  
automation	
  &	
  
purpose	
  built	
  
appliances	
  (soft/
hard)	
  
o  Manage	
  SLAs	
  &	
  
response	
  times	
  
o  Volume	
  
o  Velocity	
  
o  Streaming	
  Data	
  
o  Canonical	
  form	
  
o  Data	
  catalog	
  
o  Data	
  Fabric	
  across	
  the	
  
organization	
  
o  Access	
  to	
  multiple	
  
sources	
  of	
  data	
  	
  
o  Think	
  Hybrid	
  –	
  Big	
  Data	
  
Apps,	
  Appliances	
  &	
  
Infrastructure	
  
Collect Store Transform
o  Metadata	
  
o  Monitor	
  counters	
  &	
  
Metrics	
  
o  Structured	
  vs.	
  Multi-­‐
structured	
  
o  Flexible	
  &	
  Selectable	
  
§  Data	
  Subsets	
  	
  
§  Attribute	
  sets	
  
o  Refine	
  model	
  with	
  
§  Extended	
  Data	
  
subsets	
  
§  Engineered	
  
Attribute	
  sets	
  
o  Validation	
  run	
  across	
  a	
  
larger	
  data	
  set	
  
Reason Model Deploy
Data Management
Data Science
o  Dynamic	
  Data	
  Sets	
  
o  2	
  way	
  key-­‐value	
  tagging	
  of	
  
datasets	
  
o  Extended	
  attribute	
  sets	
  
o  Advanced	
  Analytics	
  
ExploreVisualize Recommend Predict
o  Performance	
  
o  Scalability	
  
o  Refresh	
  Latency	
  
o  In-­‐memory	
  Analytics	
  
o  Advanced	
  Visualization	
  
o  Interactive	
  Dashboards	
  
o  Map	
  Overlay	
  
o  Infographics	
  
¤  Bytes to Business
a.k.a. Build the full
stack
¤  Find Relevant Data
For Business
¤  Connect the Dots
Volume
Velocity
Variety
Data Science “folk knowledge” (7 of A)
Context
Connect
edness
Intelligence
Interface
Inference
“Data of unusual size”
that can't be brute forced
o  Three Amigos
o  Interface = Cognition
o  Intelligence = Compute(CPU) & Computational(GPU)
o  Infer Significance & Causality
Data Science “folk knowledge” (8 of A)
Jeremy’s Axioms
o  Iteratively explore data
o  Tools
•  Excel Format, Perl, Perl Book
o  Get your head around data
•  Pivot Table
o  Don’t over-complicate
o  If people give you data, don’t assume that you
need to use all of it
o  Look at pictures !
o  History of your submissions – keep a tab
o  Don’t be afraid to submit simple solutions
•  We will do this during this workshop
Ref: http://blog.kaggle.com/2011/03/23/getting-in-shape-for-the-sport-of-data-sciencetalk-by-jeremy-
howard/
Data Science “folk knowledge” (9 of A)
①  Common Sense (some features make more sense then others)
②  Carefully read these forums to get a peak at other peoples’ mindset
③  Visualizations
④  Train a classifier (e.g. logistic regression) and look at the feature weights
⑤  Train a decision tree and visualize it
⑥  Cluster the data and look at what clusters you get out
⑦  Just look at the raw data
⑧  Train a simple classifier, see what mistakes it makes
⑨  Write a classifier using handwritten rules
⑩  Pick a fancy method that you want to apply (Deep Learning/Nnet)
-- Maarten Bosma
-- http://www.kaggle.com/c/stumbleupon/forums/t/5761/methods-for-getting-a-first-overview-over-the-data
Data Science “folk knowledge” (A of A)
Lessons from Kaggle Winners
①  Don’t over-fit
②  All predictors are not needed
•  All data rows are not needed, either
③  Tuning the algorithms will give different results
④  Reduce the dataset (Average, select transition data,…)
⑤  Test set & training set can differ
⑥  Iteratively explore & get your head around data
⑦  Don’t be afraid to submit simple solutions
⑧  Keep a tab & history your submissions
The curious case of the Data Scientist
o Data Scientist is multi-faceted & Contextual
o Data Scientist should be building Data Products
o Data Scientist should tell a story
Data Scientist (noun): Person who is better at
statistics than any software engineer & better
at software engineering than any statistician
– Josh Wills (Cloudera)
Data Scientist (noun): Person who is worse at
statistics than any statistician & worse at
software engineering than any software
engineer – Will Cukierski (Kaggle)
http://doubleclix.wordpress.com/2014/01/25/the-­‐curious-­‐case-­‐of-­‐the-­‐data-­‐scientist-­‐profession/
Large is hard; Infinite is much easier !
– Titus Brown
Essential Reading List
o  A few useful things to know about machine learning - by Pedro Domingos
•  http://dl.acm.org/citation.cfm?id=2347755
o  The Lack of A Priori Distinctions Between Learning Algorithms by David H. Wolpert
•  http://mpdc.mae.cornell.edu/Courses/MAE714/Papers/
lack_of_a_priori_distinctions_wolpert.pdf
o  http://www.no-free-lunch.org/
o  Controlling the false discovery rate: a practical and powerful approach to multiple testing Benjamini, Y. and Hochberg,
Y. C
•  http://www.stat.purdue.edu/~‾doerge/BIOINFORM.D/FALL06/Benjamini%20and%20Y
%20FDR.pdf
o  A Glimpse of Googl, NASA,Peter Norvig + The Restaurant at the End of the Universe
•  http://doubleclix.wordpress.com/2014/03/07/a-glimpse-of-google-nasa-peter-norvig/
o  Avoid these three mistakes, James Faghmo
•  https://medium.com/about-data/73258b3848a4
o  Leakage in Data Mining: Formulation, Detection, and Avoidance
•  http://www.cs.umb.edu/~‾ding/history/470_670_fall_2011/papers/
cs670_Tran_PreferredPaper_LeakingInDataMining.pdf
For your reading & viewing pleasure … An ordered List
①  An Introduction to Statistical Learning
•  http://www-bcf.usc.edu/~‾gareth/ISL/
②  ISL Class Stanford/Hastie/Tibsharani at their best - Statistical Learning
•  http://online.stanford.edu/course/statistical-learning-winter-2014
③  Prof. Pedro Domingo
•  https://class.coursera.org/machlearning-001/lecture/preview
④  Prof. Andrew Ng
•  https://class.coursera.org/ml-003/lecture/preview
⑤  Prof. Abu Mostafa, CaltechX: CS1156x: Learning From Data
•  https://www.edx.org/course/caltechx/caltechx-cs1156x-learning-data-1120
⑥  Mathematicalmonk @ YouTube
•  https://www.youtube.com/playlist?list=PLD0F06AA0D2E8FFBA
⑦  The Elements Of Statistical Learning
•  http://statweb.stanford.edu/~‾tibs/ElemStatLearn/
http://www.quora.com/Machine-Learning/Whats-the-easiest-way-to-learn-
machine-learning/
Of Models,
Performance, Evaluation
& Interpretation
Bias/Variance (1 of 2)
o Model Complexity
•  Complex Model increases the
training data fit
•  But then it overfits & doesn't
perform as well with real data
o  Bias vs. Variance
o  Classical diagram
o  From ELSII, By Hastie, Tibshirani & Friedman
o  Bias – Model learns wrong things; not
complex enough; error gap small; more
data by itself won’t help
o  Variance – Different dataset will give
different error rate; over fitted model;
larger error gap; more data could help
Prediction Error

Training 

Error

Ref: Andrew Ng/Stanford, Yaser S./CalTech
Learning Curve
Bias/Variance (2 of 2)
o High Bias
•  Due to Underfitting
•  Add more features
•  More sophisticated model
•  Quadratic Terms, complex equations,…
•  Decrease regularization
o High Variance
•  Due to Overfitting
•  Use fewer features
•  Use more training sample
•  Increase Regularization
Prediction Error

Training 

Error

Ref: Strata 2013 Tutorial by Olivier Grisel
Learning Curve
Need	
  more	
  features	
  or	
  more	
  
complex	
  model	
  to	
  improve	
  
Need	
  more	
  data	
  to	
  improve	
  
Partition Data !
•  Training (60%)
•  Validation(20%) &
•  “Vault” Test (20%) Data sets
k-fold Cross-Validation
•  Split data into k equal parts
•  Fit model to k-1 parts &
calculate prediction error on kth
part
•  Non-overlapping dataset
Data Partition &
Cross-Validation
—  Goal

◦  Model Complexity (-)

◦  Variance (-)

◦  Prediction Accuracy (+)

Train	
   Validate	
   Test	
  
#2	
   #3	
   #4	
  
#5	
  
#1	
  
#2	
   #3	
   #5	
  
#4	
  
#1	
  
#2	
   #4	
   #5	
  
#3	
  
#1	
  
#3	
   #4	
   #5	
  
#2	
  
#1	
  
#3	
   #4	
   #5	
  
#1	
  
#2	
  
K-­‐fold	
  CV	
  (k=5)	
  
Train	
   Validate	
  
Bootstrap
•  Draw datasets (with replacement) and fit model for each dataset
•  Remember : Data Partitioning (#1) & Cross Validation (#2) are without
replacement
Bootstrap & Bagging
—  Goal

◦  Model Complexity (-)

◦  Variance (-)

◦  Prediction Accuracy (+)

Bagging (Bootstrap aggregation)
◦  Average prediction over a collection of
bootstrap-ed samples, thus reducing
variance
◦  “Output	
  of	
  weak	
  classifiers	
  into	
  a	
  powerful	
  commiTee”	
  
◦  Final	
  PredicLon	
  =	
  weighted	
  majority	
  vote	
  	
  
◦  Later	
  classifiers	
  get	
  misclassified	
  points	
  	
  
–  With	
  higher	
  weight,	
  	
  
–  So	
  they	
  are	
  forced	
  	
  
–  To	
  concentrate	
  on	
  them	
  
◦  AdaBoost	
  (AdapLveBoosting)	
  
◦  BoosLng	
  vs	
  Bagging	
  
–  Bagging	
  –	
  independent	
  trees	
  
–  BoosLng	
  –	
  successively	
  weighted	
  
Boosting
—  Goal

◦  Model Complexity (-)

◦  Variance (-)

◦  Prediction Accuracy (+)
◦  Builds	
  large	
  collecLon	
  of	
  de-­‐correlated	
  trees	
  &	
  averages	
  
them	
  
◦  Improves	
  Bagging	
  by	
  selecLng	
  i.i.d*	
  random	
  variables	
  for	
  
splikng	
  
◦  Simpler	
  to	
  train	
  &	
  tune	
  
◦  “Do	
  remarkably	
  well,	
  with	
  very	
  li@le	
  tuning	
  required”	
  –	
  ESLII	
  
◦  Less	
  suscepLble	
  to	
  over	
  fikng	
  (than	
  boosLng)	
  
◦  Many	
  RF	
  implementaLons	
  
–  Original	
  version	
  -­‐	
  Fortran-­‐77	
  !	
  By	
  Breiman/Cutler	
  
–  Python,	
  R,	
  Mahout,	
  Weka,	
  Milk	
  (ML	
  toolkit	
  for	
  py),	
  matlab	
  	
  
* i.i.d – independent identically distributed
+ http://www.stat.berkeley.edu/~breiman/RandomForests/cc_home.htm
Random Forests+
—  Goal

◦  Model Complexity (-)

◦  Variance (-)

◦  Prediction Accuracy (+)
◦  Two	
  Step	
  
–  Develop	
  a	
  set	
  of	
  learners	
  
–  Combine	
  the	
  results	
  to	
  develop	
  a	
  composite	
  predictor	
  
◦  Ensemble	
  methods	
  can	
  take	
  the	
  form	
  of:	
  
–  Using	
  different	
  algorithms,	
  	
  
–  Using	
  the	
  same	
  algorithm	
  with	
  different	
  sekngs	
  
–  Assigning	
  different	
  parts	
  of	
  the	
  dataset	
  to	
  different	
  classifiers	
  
◦  Bagging	
  &	
  Random	
  Forests	
  are	
  examples	
  of	
  ensemble	
  
method	
  	
  
Ref: Machine Learning In Action
Ensemble Methods
—  Goal

◦  Model Complexity (-)

◦  Variance (-)

◦  Prediction Accuracy (+)
Random Forests
o  While Boosting splits based on best among all variables, RF splits based on best among
randomly chosen variables
o  Simpler because it requires two variables – no. of Predictors (typically √k) & no. of trees
(500 for large dataset, 150 for smaller)
o  Error prediction
•  For each iteration, predict for dataset that is not in the sample (OOB data)
•  Aggregate OOB predictions
•  Calculate Prediction Error for the aggregate, which is basically the OOB
estimate of error rate
•  Can use this to search for optimal # of predictors
•  We will see how close this is to the actual error in the Heritage Health Prize
o  Assumes equal cost for mis-prediction. Can add a cost function
o  Proximity matrix & applications like adding missing data, dropping outliers
Ref: R News Vol 2/3, Dec 2002
Statistical Learning from a Regression Perspective : Berk
A Brief Overview of RF by Dan Steinberg
Classifiers	
  
Regression	
  
Continuous
Variables
Categorical 
Variables
Decision	
  
Trees	
  
k-­‐NN(Nearest	
  
Neighbors)	
  
Bias

Variance

Model Complexity

Over-fitting

BoosLng	
  Bagging	
  
CART	
  
Model Evaluation &
Interpretation
Relevant Digression
3:10
2:50
Cross Validation
o Reference:
•  https://www.kaggle.com/wiki/
GettingStartedWithPythonForDataScience
•  Chris Clark ‘s blog :
http://blog.kaggle.com/2012/07/02/up-and-running-with-python-
my-first-kaggle-entry/
•  Predicive Modelling in py with scikit-learning, Olivier Grisel Strata
2013
•  titanic from pycon2014/parallelmaster/An introduction to Predictive
Modeling in Python
Refer	
  to	
  iPython	
  notebook	
  <2-­‐Model-­‐EvaluaLon>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
Model Evaluation - Accuracy
o Accuracy =
o For cases where tn is large compared tp, a degenerate return(false) will be
very accurate !
o Hence the F-measure is a better reflection of the model strength
Predicted=1	
   Predicted=0	
  
Actual	
  =1	
   True+	
  (tp)	
   False-­‐	
  (fn)	
  
Actual=0	
   False+	
  (fp)	
   True-­‐	
  (tn)	
  
	
  	
  	
  	
  tp	
  +	
  tn	
  
tp+fp+fn+tn	
  
	
  
Model Evaluation – Precision & Recall
o  Precision = How many items we identified are relevant
o  Recall = How many relevant items did we identify
o  Inverse relationship – Tradeoff depends on situations
•  Legal – Coverage is important than correctness
•  Search – Accuracy is more important
•  Fraud
•  Support cost (high fp) vs. wrath of credit card co.(high fn)
	
  	
  	
  	
  tp	
  
tp+fp	
  
	
  
•  Precision	
  	
  
•  Accuracy	
  
•  Relevancy	
  
	
  	
  	
  	
  tp	
  
tp+fn	
  
	
  
•  Recall	
  	
  
•  True	
  +ve	
  Rate	
  
•  Coverage	
  
•  Sensitivity	
  
•  Hit	
  Rate	
  
http://nltk.googlecode.com/svn/trunk/doc/book/ch06.html	

	
  	
  	
  	
  fp	
  
fp+tn	
  
	
  
•  Type	
  1	
  Error	
  
Rate	
  
•  False	
  +ve	
  Rate	
  
•  False	
  Alarm	
  Rate	
  
•  Specificity	
  =	
  1	
  –	
  fp	
  rate	
  
•  Type	
  1	
  Error	
  =	
  fp	
  
•  Type	
  2	
  Error	
  =	
  fn	
  
Predicted=1	
   Predicted=0	
  
Actual	
  =1	
   True+	
  (tp)	
   False-­‐	
  (fn)	
  
Actual=0	
   False+	
  (fp)	
   True-­‐	
  (tn)	
  
Confusion Matrix
	
  
	
  
	
  
Actual	
  
Predicted	
  
C1	
   C2	
   C3	
   C4	
  
C1	
   10	
   5	
   9	
   3	
  
C2	
   4	
   20	
   3	
   7	
  
C3	
   6	
   4	
   13	
   3	
  
C4	
   2	
   1	
   4	
   15	
  
Correct	
  Ones	
  (cii)	
  
Precision	
  =	
  
Columns	
  
	
  	
  	
  	
  	
  	
  	
  	
  i	
  
cii	
  
cij	
  
Recall	
  =	
  
Rows	
  
	
  	
  	
  	
  	
  j	
  
	
  
cii	
  
cij	
  
Σ
Σ
Model Evaluation : F-Measure
Precision = tp / (tp+fp) : Recall = tp / (tp+fn)
F-Measure
Balanced, Combined, Weighted Harmonic Mean, measures effectiveness
=	
  
β2	
  P	
  +	
  R	
  
Common Form (Balanced F1) : β=1 (α = ½ ) ; F1 = 2PR / P+R
+	
  (1	
  –	
  α)	
  α	
   1	
  
P	
  
1	
  
R	
  
1	
   (β2	
  +	
  1)PR	
  
Predicted=1	
   Predicted=0	
  
Actual	
  =1	
   True+	
  (tp)	
   False-­‐	
  (fn)	
  
Actual=0	
   False+	
  (fp)	
   True-­‐	
  (tn)	
  
Hands-on Walkthru - Model Evaluation
Train	
   Test	
  
712 (80%) 179
891
Refer	
  to	
  iPython	
  notebook	
  <2-­‐Model-­‐EvaluaLon>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
ROC Analysis
o “How good is my model?”
o Good Reference : http://people.inf.elte.hu/kiss/13dwhdm/roc.pdf
o “A receiver operating characteristics (ROC) graph is a technique for visualizing,
organizing and selecting classifiers based on their performance”
o Much better than evaluating a model based on simple classification accuracy
o Plots tp rate vs. fp rate
o After understanding the ROC Graph, we will draw a few for our models in
iPython notebook <2-Model-Evaluation> at https://github.com/xsankar/
freezing-bear
ROC Graph - Discussion
o  E = Conservative, Everything
NO
o  H = Liberal, Everything YES
o Am not making any
political statement !
o  F = Ideal
o  G = Worst
o  The diagonal is the chance
o  North West Corner is good
o  South-East is bad
•  For example E
•  Believe it or Not - I have
actually seen a graph
with the curve in this
region !
E
F
G
H
Predicted=1	
   Predicted=0	
  
Actual	
  =1	
   True+	
  (tp)	
   False-­‐	
  (fn)	
  
Actual=0	
   False+	
  (fp)	
   True-­‐	
  (tn)	
  
ROC Graph – Clinical Example
Ifcc	
  :	
  Measures	
  of	
  diagnostic	
  accuracy:	
  basic	
  definitions	
  
ROC Graph Walk thru
o iPython notebook <2-Model-Evaluation> at https://github.com/xsankar/
freezing-bear
The Art of a Competition – Session I :
Data Science London + Scikit-learn
3:40
Few interesting Links-troll the forums
o http://www.kaggle.com/c/data-science-london-scikit-learn/visualization/1113
•  Will’s Solution
o Quick First prediction :
http://www.kaggle.com/c/data-science-london-scikit-learn/visualization/1075
o CV http://www.kaggle.com/c/data-science-london-scikit-learn/visualization/1183
o In-depth Solution :
http://www.kaggle.com/c/data-science-london-scikit-learn/forums/t/6528/
solution-discussion
o Video
http://datasciencelondon.org/machine-learning-python-scikit-learn-ipython-
dsldn-data-science-london-kaggle/
o More in http://www.kaggle.com/c/data-science-london-scikit-learn/visualization
#1 : SVM-Will
Refer	
  to	
  iPython	
  notebook	
  <3-­‐Session-­‐I>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
#3 : Unsupervised Feature Engineering
The Art of a Competition -
Session II : ASUS, PAKDD2014
The 18th Pacific-Asia Conference on Knowledge Discovery & Data Mining
4:10
Data Organization & Approach
o Deceptively Simple Data
•  Sales
•  Repairs
•  Predict Future Repairs
o Explore data
•  Module : M1-M9
•  Component : P1-P31
o Repair before sales
o -ve sales
o Reason for exploring this competition
is to get a feel for a complex dataset
in terms of processing
Sales	
  
Repairs	
  
Future	
  Repairs	
  ?	
  
Approach, Ideas & Results
o  Discussions – troll the forums
•  http://www.kaggle.com/c/pakdd-cup-2014/forums/t/7573/what-did-
you-do-to-get-to-the-top-of-the-board
•  Ran Locar, James King, https://github.com/aparij/kaggle_asus/blob/master/
lin_comb_survival.py, Brandon Kam,
•  http://www.kaggle.com/c/pakdd-cup-2014/forums/t/6980/sample-
submission-benchmark-in-leaderboard
•  Beat_benchmark by Chitrasen
•  Beat-benchmary.py
o  Lots of interesting models & ideas
o  Simple linear regression
o  Quadratic Time ?
o  Batch Mortality Rate
o  Breaks with higher repair tendency ? Survival Analysis ?
Refer	
  to	
  iPython	
  notebook	
  <4-­‐Session-­‐II>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
#1 – All 0s, All 1s
o All 0s
o All 1s
Refer	
  to	
  iPython	
  notebook	
  <4-­‐Session-­‐II>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
#2 :
o Let us get serious & do some transformation
o Split
o Convert to int64
Refer	
  to	
  iPython	
  notebook	
  <4-­‐Session-­‐II>	
  	
  
at	
  hTps://github.com/xsankar/freezing-­‐bear	
  
#3 : Hints To Try
o Decay
o Kaplan Meier Analysis
o Cox Model
o Parametric Survival Models
The Beginning As The
End
4:10
The Beginning As the End
—  We	
  started	
  with	
  a	
  set	
  of	
  
goals	
  
—  Homework	
  
◦  For	
  you	
  
–  Go	
  through	
  the	
  slides	
  	
  
–  Do	
  the	
  walkthrough	
  
–  Work	
  on	
  more	
  compe00ons	
  
–  Submit	
  entries	
  to	
  Kaggle	
  
References:
o  An Introduction to scikit-learn, pycon 2013, Jake Vanderplas
•  http://pyvideo.org/video/1655/an-introduction-to-scikit-learn-machine-
learning
o  Advanced Machine Learning with scikit-learn, pycon 2013, Strata 2014, Olivier Grisel
•  http://pyvideo.org/video/1719/advanced-machine-learning-with-scikit-learn
o  Just The Basics, Strata 2013, William Cukierski & Ben Hamner
•  http://strataconf.com/strata2013/public/schedule/detail/27291
o  The Problem of Multiple Testing
•  http://download.journals.elsevierhealth.com/pdfs/journals/1934-1482/
PIIS1934148209014609.pdf
Data Wrangling For Kaggle Data Science Competitions

More Related Content

What's hot

Feature Engineering - Getting most out of data for predictive models
Feature Engineering - Getting most out of data for predictive modelsFeature Engineering - Getting most out of data for predictive models
Feature Engineering - Getting most out of data for predictive modelsGabriel Moreira
 
Feature Engineering
Feature EngineeringFeature Engineering
Feature EngineeringSri Ambati
 
Modern classification techniques
Modern classification techniquesModern classification techniques
Modern classification techniquesmark_landry
 
Gradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learnGradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learnDataRobot
 
Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15
Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15
Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15MLconf
 
Introduction to XGBoost
Introduction to XGBoostIntroduction to XGBoost
Introduction to XGBoostJoonyoung Yi
 
Introduction of Feature Hashing
Introduction of Feature HashingIntroduction of Feature Hashing
Introduction of Feature HashingWush Wu
 
Comparison Study of Decision Tree Ensembles for Regression
Comparison Study of Decision Tree Ensembles for RegressionComparison Study of Decision Tree Ensembles for Regression
Comparison Study of Decision Tree Ensembles for RegressionSeonho Park
 
Feature Engineering - Getting most out of data for predictive models - TDC 2017
Feature Engineering - Getting most out of data for predictive models - TDC 2017Feature Engineering - Getting most out of data for predictive models - TDC 2017
Feature Engineering - Getting most out of data for predictive models - TDC 2017Gabriel Moreira
 
Feature Engineering
Feature Engineering Feature Engineering
Feature Engineering odsc
 
XGBoost @ Fyber
XGBoost @ FyberXGBoost @ Fyber
XGBoost @ FyberDaniel Hen
 
Feature engineering pipelines
Feature engineering pipelinesFeature engineering pipelines
Feature engineering pipelinesRamesh Sampath
 
Overview of tree algorithms from decision tree to xgboost
Overview of tree algorithms from decision tree to xgboostOverview of tree algorithms from decision tree to xgboost
Overview of tree algorithms from decision tree to xgboostTakami Sato
 
Gbm.more GBM in H2O
Gbm.more GBM in H2OGbm.more GBM in H2O
Gbm.more GBM in H2OSri Ambati
 
Hands-on Deep Learning in Python
Hands-on Deep Learning in PythonHands-on Deep Learning in Python
Hands-on Deep Learning in PythonImry Kissos
 
How to win data science competitions with Deep Learning
How to win data science competitions with Deep LearningHow to win data science competitions with Deep Learning
How to win data science competitions with Deep LearningSri Ambati
 
Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16
Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16
Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16MLconf
 

What's hot (20)

Feature Engineering - Getting most out of data for predictive models
Feature Engineering - Getting most out of data for predictive modelsFeature Engineering - Getting most out of data for predictive models
Feature Engineering - Getting most out of data for predictive models
 
Feature Engineering
Feature EngineeringFeature Engineering
Feature Engineering
 
Modern classification techniques
Modern classification techniquesModern classification techniques
Modern classification techniques
 
Ppt shuai
Ppt shuaiPpt shuai
Ppt shuai
 
Gradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learnGradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learn
 
Xgboost
XgboostXgboost
Xgboost
 
Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15
Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15
Misha Bilenko, Principal Researcher, Microsoft at MLconf SEA - 5/01/15
 
Introduction to XGBoost
Introduction to XGBoostIntroduction to XGBoost
Introduction to XGBoost
 
Introduction of Feature Hashing
Introduction of Feature HashingIntroduction of Feature Hashing
Introduction of Feature Hashing
 
Comparison Study of Decision Tree Ensembles for Regression
Comparison Study of Decision Tree Ensembles for RegressionComparison Study of Decision Tree Ensembles for Regression
Comparison Study of Decision Tree Ensembles for Regression
 
Feature Engineering - Getting most out of data for predictive models - TDC 2017
Feature Engineering - Getting most out of data for predictive models - TDC 2017Feature Engineering - Getting most out of data for predictive models - TDC 2017
Feature Engineering - Getting most out of data for predictive models - TDC 2017
 
Feature Engineering
Feature Engineering Feature Engineering
Feature Engineering
 
XGBoost @ Fyber
XGBoost @ FyberXGBoost @ Fyber
XGBoost @ Fyber
 
Feature engineering pipelines
Feature engineering pipelinesFeature engineering pipelines
Feature engineering pipelines
 
GBM theory code and parameters
GBM theory code and parametersGBM theory code and parameters
GBM theory code and parameters
 
Overview of tree algorithms from decision tree to xgboost
Overview of tree algorithms from decision tree to xgboostOverview of tree algorithms from decision tree to xgboost
Overview of tree algorithms from decision tree to xgboost
 
Gbm.more GBM in H2O
Gbm.more GBM in H2OGbm.more GBM in H2O
Gbm.more GBM in H2O
 
Hands-on Deep Learning in Python
Hands-on Deep Learning in PythonHands-on Deep Learning in Python
Hands-on Deep Learning in Python
 
How to win data science competitions with Deep Learning
How to win data science competitions with Deep LearningHow to win data science competitions with Deep Learning
How to win data science competitions with Deep Learning
 
Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16
Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16
Dr. Erin LeDell, Machine Learning Scientist, H2O.ai at MLconf SEA - 5/20/16
 

Similar to Data Wrangling For Kaggle Data Science Competitions

R, Data Wrangling & Kaggle Data Science Competitions
R, Data Wrangling & Kaggle Data Science CompetitionsR, Data Wrangling & Kaggle Data Science Competitions
R, Data Wrangling & Kaggle Data Science CompetitionsKrishna Sankar
 
R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538
R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538
R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538Krishna Sankar
 
Discrete-event simulation: best practices and implementation details in Pytho...
Discrete-event simulation: best practices and implementation details in Pytho...Discrete-event simulation: best practices and implementation details in Pytho...
Discrete-event simulation: best practices and implementation details in Pytho...Carlos Natalino da Silva
 
Parallel Genetic Algorithms in the Cloud
Parallel Genetic Algorithms in the CloudParallel Genetic Algorithms in the Cloud
Parallel Genetic Algorithms in the CloudPasquale Salza
 
Cloudera Data Science Challenge
Cloudera Data Science ChallengeCloudera Data Science Challenge
Cloudera Data Science ChallengeMark Nichols, P.E.
 
Data Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup GroupData Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup GroupDoug Needham
 
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...Rodney Joyce
 
Deep learning with Keras
Deep learning with KerasDeep learning with Keras
Deep learning with KerasQuantUniversity
 
Traffic Matrices and its measurement
Traffic Matrices and its measurementTraffic Matrices and its measurement
Traffic Matrices and its measurementeetacupc
 
"Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J...
"Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J..."Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J...
"Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J...Dataconomy Media
 
Python for Chemistry
Python for ChemistryPython for Chemistry
Python for Chemistryguest5929fa7
 
Python for Chemistry
Python for ChemistryPython for Chemistry
Python for Chemistrybaoilleach
 
Data Science with Spark
Data Science with SparkData Science with Spark
Data Science with SparkKrishna Sankar
 
Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017
Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017
Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017StampedeCon
 
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)Amazon Web Services Korea
 
Deep learning with Keras
Deep learning with KerasDeep learning with Keras
Deep learning with KerasQuantUniversity
 
Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기 - 윤석찬 (AWS 테크에반젤리스트)
Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기  - 윤석찬 (AWS 테크에반젤리스트)Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기  - 윤석찬 (AWS 테크에반젤리스트)
Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기 - 윤석찬 (AWS 테크에반젤리스트)Amazon Web Services Korea
 
Galaxy RNA-Seq Analysis: Tuxedo Protocol
Galaxy RNA-Seq Analysis: Tuxedo ProtocolGalaxy RNA-Seq Analysis: Tuxedo Protocol
Galaxy RNA-Seq Analysis: Tuxedo ProtocolHong ChangBum
 
StackNet Meta-Modelling framework
StackNet Meta-Modelling frameworkStackNet Meta-Modelling framework
StackNet Meta-Modelling frameworkSri Ambati
 

Similar to Data Wrangling For Kaggle Data Science Competitions (20)

R, Data Wrangling & Kaggle Data Science Competitions
R, Data Wrangling & Kaggle Data Science CompetitionsR, Data Wrangling & Kaggle Data Science Competitions
R, Data Wrangling & Kaggle Data Science Competitions
 
R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538
R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538
R, Data Wrangling & Predicting NFL with Elo like Nate SIlver & 538
 
Kx for wine tasting
Kx for wine tastingKx for wine tasting
Kx for wine tasting
 
Discrete-event simulation: best practices and implementation details in Pytho...
Discrete-event simulation: best practices and implementation details in Pytho...Discrete-event simulation: best practices and implementation details in Pytho...
Discrete-event simulation: best practices and implementation details in Pytho...
 
Parallel Genetic Algorithms in the Cloud
Parallel Genetic Algorithms in the CloudParallel Genetic Algorithms in the Cloud
Parallel Genetic Algorithms in the Cloud
 
Cloudera Data Science Challenge
Cloudera Data Science ChallengeCloudera Data Science Challenge
Cloudera Data Science Challenge
 
Data Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup GroupData Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup Group
 
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
Data Science for Dummies - Data Engineering with Titanic dataset + Databricks...
 
Deep learning with Keras
Deep learning with KerasDeep learning with Keras
Deep learning with Keras
 
Traffic Matrices and its measurement
Traffic Matrices and its measurementTraffic Matrices and its measurement
Traffic Matrices and its measurement
 
"Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J...
"Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J..."Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J...
"Einstürzenden Neudaten: Building an Analytics Engine from Scratch", Tobias J...
 
Python for Chemistry
Python for ChemistryPython for Chemistry
Python for Chemistry
 
Python for Chemistry
Python for ChemistryPython for Chemistry
Python for Chemistry
 
Data Science with Spark
Data Science with SparkData Science with Spark
Data Science with Spark
 
Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017
Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017
Getting Started with Keras and TensorFlow - StampedeCon AI Summit 2017
 
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
 
Deep learning with Keras
Deep learning with KerasDeep learning with Keras
Deep learning with Keras
 
Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기 - 윤석찬 (AWS 테크에반젤리스트)
Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기  - 윤석찬 (AWS 테크에반젤리스트)Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기  - 윤석찬 (AWS 테크에반젤리스트)
Amazon SageMaker을 통한 손쉬운 Jupyter Notebook 활용하기 - 윤석찬 (AWS 테크에반젤리스트)
 
Galaxy RNA-Seq Analysis: Tuxedo Protocol
Galaxy RNA-Seq Analysis: Tuxedo ProtocolGalaxy RNA-Seq Analysis: Tuxedo Protocol
Galaxy RNA-Seq Analysis: Tuxedo Protocol
 
StackNet Meta-Modelling framework
StackNet Meta-Modelling frameworkStackNet Meta-Modelling framework
StackNet Meta-Modelling framework
 

More from Krishna Sankar

Pandas, Data Wrangling & Data Science
Pandas, Data Wrangling & Data SciencePandas, Data Wrangling & Data Science
Pandas, Data Wrangling & Data ScienceKrishna Sankar
 
An excursion into Graph Analytics with Apache Spark GraphX
An excursion into Graph Analytics with Apache Spark GraphXAn excursion into Graph Analytics with Apache Spark GraphX
An excursion into Graph Analytics with Apache Spark GraphXKrishna Sankar
 
An excursion into Text Analytics with Apache Spark
An excursion into Text Analytics with Apache SparkAn excursion into Text Analytics with Apache Spark
An excursion into Text Analytics with Apache SparkKrishna Sankar
 
Big Data Analytics - Best of the Worst : Anti-patterns & Antidotes
Big Data Analytics - Best of the Worst : Anti-patterns & AntidotesBig Data Analytics - Best of the Worst : Anti-patterns & Antidotes
Big Data Analytics - Best of the Worst : Anti-patterns & AntidotesKrishna Sankar
 
Architecture in action 01
Architecture in action 01Architecture in action 01
Architecture in action 01Krishna Sankar
 
Data Science with Spark - Training at SparkSummit (East)
Data Science with Spark - Training at SparkSummit (East)Data Science with Spark - Training at SparkSummit (East)
Data Science with Spark - Training at SparkSummit (East)Krishna Sankar
 
The Hitchhiker's Guide to Machine Learning with Python & Apache Spark
The Hitchhiker's Guide to Machine Learning with Python & Apache SparkThe Hitchhiker's Guide to Machine Learning with Python & Apache Spark
The Hitchhiker's Guide to Machine Learning with Python & Apache SparkKrishna Sankar
 
Data Science Folk Knowledge
Data Science Folk KnowledgeData Science Folk Knowledge
Data Science Folk KnowledgeKrishna Sankar
 
Bayesian Machine Learning - Naive Bayes
Bayesian Machine Learning - Naive BayesBayesian Machine Learning - Naive Bayes
Bayesian Machine Learning - Naive BayesKrishna Sankar
 
AWS VPC distilled for MongoDB devOps
AWS VPC distilled for MongoDB devOpsAWS VPC distilled for MongoDB devOps
AWS VPC distilled for MongoDB devOpsKrishna Sankar
 
The Art of Social Media Analysis with Twitter & Python
The Art of Social Media Analysis with Twitter & PythonThe Art of Social Media Analysis with Twitter & Python
The Art of Social Media Analysis with Twitter & PythonKrishna Sankar
 
Big Data Engineering - Top 10 Pragmatics
Big Data Engineering - Top 10 PragmaticsBig Data Engineering - Top 10 Pragmatics
Big Data Engineering - Top 10 PragmaticsKrishna Sankar
 
Scrum debrief to team
Scrum debrief to team Scrum debrief to team
Scrum debrief to team Krishna Sankar
 
Precision Time Synchronization
Precision Time SynchronizationPrecision Time Synchronization
Precision Time SynchronizationKrishna Sankar
 
Nosql hands on handout 04
Nosql hands on handout 04Nosql hands on handout 04
Nosql hands on handout 04Krishna Sankar
 
Cloud Interoperability Demo at OGF29
Cloud Interoperability Demo at OGF29Cloud Interoperability Demo at OGF29
Cloud Interoperability Demo at OGF29Krishna Sankar
 
A Hitchhiker's Guide to NOSQL v1.0
A Hitchhiker's Guide to NOSQL v1.0A Hitchhiker's Guide to NOSQL v1.0
A Hitchhiker's Guide to NOSQL v1.0Krishna Sankar
 

More from Krishna Sankar (18)

Pandas, Data Wrangling & Data Science
Pandas, Data Wrangling & Data SciencePandas, Data Wrangling & Data Science
Pandas, Data Wrangling & Data Science
 
An excursion into Graph Analytics with Apache Spark GraphX
An excursion into Graph Analytics with Apache Spark GraphXAn excursion into Graph Analytics with Apache Spark GraphX
An excursion into Graph Analytics with Apache Spark GraphX
 
An excursion into Text Analytics with Apache Spark
An excursion into Text Analytics with Apache SparkAn excursion into Text Analytics with Apache Spark
An excursion into Text Analytics with Apache Spark
 
Big Data Analytics - Best of the Worst : Anti-patterns & Antidotes
Big Data Analytics - Best of the Worst : Anti-patterns & AntidotesBig Data Analytics - Best of the Worst : Anti-patterns & Antidotes
Big Data Analytics - Best of the Worst : Anti-patterns & Antidotes
 
Architecture in action 01
Architecture in action 01Architecture in action 01
Architecture in action 01
 
Data Science with Spark - Training at SparkSummit (East)
Data Science with Spark - Training at SparkSummit (East)Data Science with Spark - Training at SparkSummit (East)
Data Science with Spark - Training at SparkSummit (East)
 
The Hitchhiker's Guide to Machine Learning with Python & Apache Spark
The Hitchhiker's Guide to Machine Learning with Python & Apache SparkThe Hitchhiker's Guide to Machine Learning with Python & Apache Spark
The Hitchhiker's Guide to Machine Learning with Python & Apache Spark
 
Data Science Folk Knowledge
Data Science Folk KnowledgeData Science Folk Knowledge
Data Science Folk Knowledge
 
Bayesian Machine Learning - Naive Bayes
Bayesian Machine Learning - Naive BayesBayesian Machine Learning - Naive Bayes
Bayesian Machine Learning - Naive Bayes
 
AWS VPC distilled for MongoDB devOps
AWS VPC distilled for MongoDB devOpsAWS VPC distilled for MongoDB devOps
AWS VPC distilled for MongoDB devOps
 
The Art of Social Media Analysis with Twitter & Python
The Art of Social Media Analysis with Twitter & PythonThe Art of Social Media Analysis with Twitter & Python
The Art of Social Media Analysis with Twitter & Python
 
Big Data Engineering - Top 10 Pragmatics
Big Data Engineering - Top 10 PragmaticsBig Data Engineering - Top 10 Pragmatics
Big Data Engineering - Top 10 Pragmatics
 
Scrum debrief to team
Scrum debrief to team Scrum debrief to team
Scrum debrief to team
 
The Art of Big Data
The Art of Big DataThe Art of Big Data
The Art of Big Data
 
Precision Time Synchronization
Precision Time SynchronizationPrecision Time Synchronization
Precision Time Synchronization
 
Nosql hands on handout 04
Nosql hands on handout 04Nosql hands on handout 04
Nosql hands on handout 04
 
Cloud Interoperability Demo at OGF29
Cloud Interoperability Demo at OGF29Cloud Interoperability Demo at OGF29
Cloud Interoperability Demo at OGF29
 
A Hitchhiker's Guide to NOSQL v1.0
A Hitchhiker's Guide to NOSQL v1.0A Hitchhiker's Guide to NOSQL v1.0
A Hitchhiker's Guide to NOSQL v1.0
 

Recently uploaded

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 

Recently uploaded (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

Data Wrangling For Kaggle Data Science Competitions

  • 1. Data Wrangling For Kaggle Data Science Competitions An Etude April 9, 2014 @ksankar // doubleclix.wordpress.com
  • 3. Agenda [1 of 3] o Intro, Goals, Logistics, Setup [10] [1:20-1:30) o Anatomy of a Kaggle Competition [60] [1:30-2:30) •  Competition Mechanics •  Register, download data, create sub directories •  Trial Run : Submit Titanic o Algorithms for the Amateur Data Scientist [20] [2:30-2:50) •  Algorithms, Tools & frameworks in perspective •  “Folk Wisdom” o Break (30 Min) [2:50-3:10)
  • 4. Agenda [2 of 3] o  Model Evaluation & Interpretation [30] [3:10-3:40) •  Confusion Matrix, ROC Graph o  Session 1 : The Art of a Competition – DS London + Scikit-learn[30 min] [3:40-4:10) •  Dataset Organization •  Analytics Walkthrough •  Algorithms - CART, RF, SVM •  Feature Extraction •  Hands-on Analytics programming of the challenge •  Submit entry o  Session 2 : The Art of a Competition – ASUS,PAKDD 2014 [20 min] [4:10-4:30) •  Dataset Organization •  Analytics Walkthrough, Transformations
  • 5. Agenda [3 of 3] o Questions, Discussions & Slack [10 min] [4:30-4:40] o Schedule •  12:20 – 1:20 : Lunch •  1:20 – 4:40 : Tutorial (1:20-2:50;2:50-3:10:Break;3:10-4:40) Overload Warning … There is enough material for a week’s training … which is good & bad ! Read thru at your pace, refer, ponder & internalize
  • 6. Goals & Assumptions o  Goals: •  Get familiar with the mechanics of Data Science Competitions •  Explore the intersection of Algorithms, Data, Intelligence, Inference & Results •  Discuss Data Science Horse Sense ;o) o  At the end of the tutorial you should have : •  Submitted entries for 3 competitions •  Applied Algorithms on Kaggle Data •  CART, RF •  Linear Regression •  SVM •  Explored Data, have a good understanding of the Analytics Pipeline viz. collect-store-transform-model-reason-deploy-visualize-recommend-infer- explore •  Knowledge of Model Evaluation •  Cross Validation, ROC Curves
  • 7. Close Encounters —  1st   ◦  This Tutorial —  2nd   ◦  Do More Hands-on Walkthrough —  3nd   ◦  Listen To Lectures ◦  More competitions …
  • 9. Setup o  Install anaconda o  update (if needed) •  conda update conda •  conda update ipython •  condo update python o  conda install pydot o  ipython notebook –-plab=inline o  Go to ipython tab in the browser o  Import packages & print version #
  • 10. Tutorial Materials o Github : https://github.com/xsankar/freezing-bear o Clone or download zip o Open terminal o cd ~/freezing-bear/notebooks o ipython notebook –pylab=inline o Click on ipython dashboard o Just look thru the ipython notebooks
  • 11. Tutorial Data o Setup an account in Kaggle (www.kaggle.com) o We will be using the data from 3 Kaggle competitions ①  Titanic: Machine Learning from Disaster •  Download data from http://www.kaggle.com/c/titanic-gettingStarted •  Directory ~/freezing-bear/notebooks/titanic ②  Data Science London + Scikit-learn •  Download data from http://www.kaggle.com/c/data-science-london-scikit-learn •  Directory ~/freezing-bear/notebooks/dsl ③  PAKDD 2014 - ASUS Malfunctional Components Prediction •  Download data from http://www.kaggle.com/c/pakdd-cup-2014 •  Directory ~/freezing-bear/notebooks/asus
  • 12. Anatomy Of a Kaggle Competition
  • 13. Kaggle Data Science Competitions o  Hosts Data Science Competitions o  Competition Attributes: •  Dataset •  Train •  Test (Submission) •  Final Evaluation Data Set (We don’t see) •  Rules •  Time boxed •  Leaderboard •  Evaluation function •  Discussion Forum •  Private or Public
  • 14. Titanic  Passenger  Metadata   •  Small   •  3  Predictors   •  Class   •  Sex   •  Age   •  Survived?   http://www.ohgizmo.com/2007/03/21/romain-jerome-titanic http://flyhigh-by-learnonline.blogspot.com/2009/12/at-movies-sherlock-holmes-2009.html Data Science London + Sci-Kit learn Competition PAKDD 2014 Predict Component Failures … ASUS
  • 15. Train.csv   Taken  from  Titanic  Passenger   Manifest   Variable   Descrip-on   Survived   0-­‐No,  1=yes   Pclass   Passenger  Class  (  1st,2nd,3rd  )   Sibsp   Number  of  Siblings/Spouses  Aboard   Parch   Number  of  Parents/Children  Aboard   Embarked   Port  of  EmbarkaLon   o  C  =  Cherbourg   o  Q  =  Queenstown   o  S  =  Southampton   Titanic  Passenger  Metadata   •  Small   •  3  Predictors   •  Class   •  Sex   •  Age   •  Survived?  
  • 16. Test.csv   Submission o 418 lines; 1st column should have 0 or 1 in each line o Evaluation: •  % correctly predicted
  • 17. Approach o  This is a classification problem - 0 or 1 o  Troll the forums ! o  Opportunity for us to try different algorithms & compare them •  Simple Model •  CART[Classification & Regression Tree] •  Greedy, top-down binary, recursive partitioning that divides feature space into sets of disjoint rectangular regions •  RF •  Different parameters •  SVM •  Multiple kernels •  Table the results o  Use cross validation to predict our model performance & correlate with what Kaggle says http://www.dabi.temple.edu/~hbling/8590.002/Montillo_RandomForests_4-2-2009.pdf
  • 18. Simple Model – Our First Submission o #1 : Simple Model (M=survived) o #2 : Simple Model (F=survived) https://www.kaggle.com/c/titanic-gettingStarted/details/getting-started-with-python Refer  to  iPython  notebook  <1-­‐Intro-­‐To-­‐Kaggle>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 19. #3 : Simple CART Model o CART (Classification & Regression Tree) http://scikit-learn.org/stable/modules/tree.html
  • 20. #4 : Random Forest Model o  https://www.kaggle.com/wiki/GettingStartedWithPythonForDataScience •  Chris Clark http://blog.kaggle.com/2012/07/02/up-and-running-with-python-my-first-kaggle-entry/ o  https://www.kaggle.com/c/titanic-gettingStarted/details/getting-started-with-random-forests o  https://github.com/RahulShivkumar/Titanic-Kaggle/blob/master/titanic.py
  • 21. #5 : SVM o Multiple Kernels o kernel = ‘rbf’ #Radial Basis Function o Kernel = ‘sigmoid’ o  agconti's blog - Ultimate Titanic ! o  http://fastly.kaggle.net/c/titanic-gettingStarted/forums/t/5105/ipython-notebook-tutorial-for-titanic-machine-learning-from-disaster/29713
  • 22. Feature Engineering - Homework o  Add attribute : Age •  In train 714/891 have age; in test 332/418 have age •  Missing values can be just Mean Age of all passengers •  We could be more precise and calculate Mean Age based on Title (Ms,Mrs,Master et al) •  Box plot age o  Add attribute : Mother, Family size et al o  Feature engineering ideas •  http://www.kaggle.com/c/titanic-gettingStarted/forums/t/6699/sharing- experiences-about-data-munging-and-classification-steps-with-python o  More ideas at http://statsguys.wordpress.com/2014/01/11/data-analytics-for-beginners-pt-2/ o  And https://github.com/wehrley/wehrley.github.io/blob/master/SOUPTONUTS.md o  Also Learning scikit-learn: Machine Learning in Python, By: Raúl Garreta; Guillermo Moncecchi, Publisher: Packt Publishing has more ideas on feature selection et al
  • 23. What does it mean ? Let us ponder …. o  We have a training data set representing a domain •  We reason over the dataset & develop a model to predict outcomes o  How good is our prediction when it comes to real life scenarios ? o  The assumption is that the dataset is taken at random •  Or Is it ? Is there a Sampling Bias ? •  i.i.d ? Independent ? Identically Distributed ? •  What about homoscedasticity ? Do they have the same finite variance ? o  Can we assure that another dataset (from the same domain) will give us the same result ? o  Will our model & it’s parameters remain the same if we get another data set ? o  How can we evaluate our model ? o  How can we select the right parameters for a selected model ?
  • 24. Algorithms for the Amateur Data Scientist “A towel is about the most massively useful thing an interstellar hitchhiker can have … any man who can hitch the length and breadth of the Galaxy, rough it … win through, and still know where his towel is, is clearly a man to be reckoned with.” - From The Hitchhiker's Guide to the Galaxy, by Douglas Adams. Algorithms ! The Most Massively useful thing an Amateur Data Scientist can have … 2:30
  • 25. Ref: Anthony’s Kaggle Presentation Data Scientists apply different techniques •  Support Vector Machine •  adaBoost •  Bayesian Networks •  Decision Trees •  Ensemble Methods •  Random Forest •  Logistic Regression •  Genetic Algorithms •  Monte Carlo Methods •  Principal Component Analysis •  Kalman Filter •  Evolutionary Fuzzy Modelling •  Neural Networks Quora •  http://www.quora.com/What-are-the-top-10-data-mining-or-machine-learning-algorithms
  • 26. Algorithm spectrum o  Regression o  Logit o  CART o  Ensemble : Random Forest o  Clustering o  KNN o  Genetic Alg o  Simulated Annealing   o  Collab Filtering o  SVM o  Kernels o  SVD o  NNet o  Boltzman Machine o  Feature Learning   Machine  Learning   Cute  Math   Ar0ficial   Intelligence  
  • 27. Classifying Classifiers Statistical   Structural   Regression   Naïve   Bayes   Bayesian   Networks   Rule-­‐based   Distance-­‐based   Neural   Networks   Production  Rules   Decision  Trees   Multi-­‐layer   Perception   Functional   Nearest  Neighbor   Linear   Spectral   Wavelet   kNN   Learning  vector   Quantization   Ensemble   Random  Forests   Logistic   Regression1   SVM  Boosting   1Max  Entropy  Classifier     Ref: Algorithms of the Intelligent Web, Marmanis & Babenko
  • 28. Classifiers   Regression   Continuous Variables Categorical Variables Decision   Trees   k-­‐NN(Nearest   Neighbors)   Bias Variance Model Complexity Over-fitting BoosLng  Bagging   CART  
  • 30. Data Science “folk knowledge” (1 of A) o  "If you torture the data long enough, it will confess to anything." – Hal Varian, Computer Mediated Transactions o  Learning = Representation + Evaluation + Optimization o  It’s Generalization that counts •  The fundamental goal of machine learning is to generalize beyond the examples in the training set o  Data alone is not enough •  Induction not deduction - Every learner should embody some knowledge or assumptions beyond the data it is given in order to generalize beyond it o  Machine Learning is not magic – one cannot get something from nothing •  In order to infer, one needs the knobs & the dials •  One also needs a rich expressive datasetA few useful things to know about machine learning - by Pedro Domingos http://dl.acm.org/citation.cfm?id=2347755
  • 31. Data Science “folk knowledge” (2 of A) o  Over fitting has many faces •  Bias – Model not strong enough. So the learner has the tendency to learn the same wrong things •  Variance – Learning too much from one dataset; model will fall apart (ie much less accurate) on a different dataset •  Sampling Bias o  Intuition Fails in high Dimensions –Bellman •  Blessing of non-conformity & lower effective dimension; many applications have examples not uniformly spread but concentrated near a lower dimensional manifold eg. Space of digits is much smaller then the space of images o  Theoretical Guarantees are not What they seem •  One of the major developments o f recent decades has been the realization that we can have guarantees on the results of induction, particularly if we are willing to settle for probabilistic guarantees. o  Feature engineering is the Key A few useful things to know about machine learning - by Pedro Domingos http://dl.acm.org/citation.cfm?id=2347755
  • 32. Data Science “folk knowledge” (3 of A) o  More Data Beats a Cleverer Algorithm •  Or conversely select algorithms that improve with data •  Don’t optimize prematurely without getting more data o  Learn many models, not Just One •  Ensembles ! – Change the hypothesis space •  Netflix prize •  E.g. Bagging, Boosting, Stacking o  Simplicity Does not necessarily imply Accuracy o  Representable Does not imply Learnable •  Just because a function can be represented does not mean it can be learned o  Correlation Does not imply Causation o  http://doubleclix.wordpress.com/2014/03/07/a-glimpse-of-google-nasa-peter-norvig/ o  A few useful things to know about machine learning - by Pedro Domingos §  http://dl.acm.org/citation.cfm?id=2347755
  • 33. Data Science “folk knowledge” (4 of A) o  The simplest hypothesis that fits the data is also the most plausible •  Occam’s Razor •  Don’t go for a 4 layer Neural Network unless you have that complex data •  But that doesn’t also mean that one should choose the simplest hypothesis •  Match the impedance of the domain, data & the algorithms o  Think of over fitting as memorizing as opposed to learning. o  Data leakage has many forms o  Sometimes the Absence of Something is Everything o  [Corollary] Absence of Evidence is not the Evidence of Absence New to Machine Learning? Avoid these three mistakes, James Faghmous https://medium.com/about-data/73258b3848a4 §  Simple  Model   §  High  Error  line  that  cannot  be   compensated  with  more  data   §  Gets  to  a  lower  error  rate  with  less  data   points   §  Complex  Model   §  Lower  Error  Line   §  But  needs  more  data  points  to  reach   decent  error     Ref: Andrew Ng/Stanford, Yaser S./CalTech
  • 34. Check your assumptions o  The decisions a model makes, is directly related to the it’s assumptions about the statistical distribution of the underlying data o  For example, for regression one should check that: ① Variables are normally distributed •  Test for normality via visual inspection, skew & kurtosis, outlier inspections via plots, z-scores et al ② There is a linear relationship between the dependent & independent variables •  Inspect residual plots, try quadratic relationships, try log plots et al ③ Variables are measured without error ④ Assumption of Homoscedasticity §  Homoscedasticity assumes constant or near constant error variance §  Check the standard residual plots and look for heteroscedasticity §  For example in the figure, left box has the errors scattered randomly around zero; while the right two diagrams have the errors unevenly distributed Jason W. Osborne and Elaine Waters, Four assumptions of multiple regression that researchers should always test, http://pareonline.net/getvn.asp?v=8&n=2
  • 35. Data Science “folk knowledge” (5 of A) Donald Rumsfeld is an armchair Data Scientist ! http://smartorg.com/2013/07/valuepoint19/ The World Knowns             Unknowns   You UnKnown   Known   o  Others  know,  you  don’t   o  What  we  do   o  Facts,  outcomes  or   scenarios  we  have  not   encountered,  nor   considered   o  “Black  swans”,  outliers,   long  tails  of  probability   distribuLons   o  Lack  of  experience,   imaginaLon   o  PotenLal  facts,   outcomes  we   are  aware,  but   not    with   certainty   o  StochasLc   processes,   ProbabiliLes   o  Known Knowns o  There are things we know that we know o  Known Unknowns o  That is to say, there are things that we now know we don't know o  But there are also Unknown Unknowns o  There are things we do not know we don't know
  • 36. Data Science “folk knowledge” (6 of A) - Pipeline o  Scalable  Model   Deployment   o  Big  Data   automation  &   purpose  built   appliances  (soft/ hard)   o  Manage  SLAs  &   response  times   o  Volume   o  Velocity   o  Streaming  Data   o  Canonical  form   o  Data  catalog   o  Data  Fabric  across  the   organization   o  Access  to  multiple   sources  of  data     o  Think  Hybrid  –  Big  Data   Apps,  Appliances  &   Infrastructure   Collect Store Transform o  Metadata   o  Monitor  counters  &   Metrics   o  Structured  vs.  Multi-­‐ structured   o  Flexible  &  Selectable   §  Data  Subsets     §  Attribute  sets   o  Refine  model  with   §  Extended  Data   subsets   §  Engineered   Attribute  sets   o  Validation  run  across  a   larger  data  set   Reason Model Deploy Data Management Data Science o  Dynamic  Data  Sets   o  2  way  key-­‐value  tagging  of   datasets   o  Extended  attribute  sets   o  Advanced  Analytics   ExploreVisualize Recommend Predict o  Performance   o  Scalability   o  Refresh  Latency   o  In-­‐memory  Analytics   o  Advanced  Visualization   o  Interactive  Dashboards   o  Map  Overlay   o  Infographics   ¤  Bytes to Business a.k.a. Build the full stack ¤  Find Relevant Data For Business ¤  Connect the Dots
  • 37. Volume Velocity Variety Data Science “folk knowledge” (7 of A) Context Connect edness Intelligence Interface Inference “Data of unusual size” that can't be brute forced o  Three Amigos o  Interface = Cognition o  Intelligence = Compute(CPU) & Computational(GPU) o  Infer Significance & Causality
  • 38. Data Science “folk knowledge” (8 of A) Jeremy’s Axioms o  Iteratively explore data o  Tools •  Excel Format, Perl, Perl Book o  Get your head around data •  Pivot Table o  Don’t over-complicate o  If people give you data, don’t assume that you need to use all of it o  Look at pictures ! o  History of your submissions – keep a tab o  Don’t be afraid to submit simple solutions •  We will do this during this workshop Ref: http://blog.kaggle.com/2011/03/23/getting-in-shape-for-the-sport-of-data-sciencetalk-by-jeremy- howard/
  • 39. Data Science “folk knowledge” (9 of A) ①  Common Sense (some features make more sense then others) ②  Carefully read these forums to get a peak at other peoples’ mindset ③  Visualizations ④  Train a classifier (e.g. logistic regression) and look at the feature weights ⑤  Train a decision tree and visualize it ⑥  Cluster the data and look at what clusters you get out ⑦  Just look at the raw data ⑧  Train a simple classifier, see what mistakes it makes ⑨  Write a classifier using handwritten rules ⑩  Pick a fancy method that you want to apply (Deep Learning/Nnet) -- Maarten Bosma -- http://www.kaggle.com/c/stumbleupon/forums/t/5761/methods-for-getting-a-first-overview-over-the-data
  • 40. Data Science “folk knowledge” (A of A) Lessons from Kaggle Winners ①  Don’t over-fit ②  All predictors are not needed •  All data rows are not needed, either ③  Tuning the algorithms will give different results ④  Reduce the dataset (Average, select transition data,…) ⑤  Test set & training set can differ ⑥  Iteratively explore & get your head around data ⑦  Don’t be afraid to submit simple solutions ⑧  Keep a tab & history your submissions
  • 41. The curious case of the Data Scientist o Data Scientist is multi-faceted & Contextual o Data Scientist should be building Data Products o Data Scientist should tell a story Data Scientist (noun): Person who is better at statistics than any software engineer & better at software engineering than any statistician – Josh Wills (Cloudera) Data Scientist (noun): Person who is worse at statistics than any statistician & worse at software engineering than any software engineer – Will Cukierski (Kaggle) http://doubleclix.wordpress.com/2014/01/25/the-­‐curious-­‐case-­‐of-­‐the-­‐data-­‐scientist-­‐profession/ Large is hard; Infinite is much easier ! – Titus Brown
  • 42. Essential Reading List o  A few useful things to know about machine learning - by Pedro Domingos •  http://dl.acm.org/citation.cfm?id=2347755 o  The Lack of A Priori Distinctions Between Learning Algorithms by David H. Wolpert •  http://mpdc.mae.cornell.edu/Courses/MAE714/Papers/ lack_of_a_priori_distinctions_wolpert.pdf o  http://www.no-free-lunch.org/ o  Controlling the false discovery rate: a practical and powerful approach to multiple testing Benjamini, Y. and Hochberg, Y. C •  http://www.stat.purdue.edu/~‾doerge/BIOINFORM.D/FALL06/Benjamini%20and%20Y %20FDR.pdf o  A Glimpse of Googl, NASA,Peter Norvig + The Restaurant at the End of the Universe •  http://doubleclix.wordpress.com/2014/03/07/a-glimpse-of-google-nasa-peter-norvig/ o  Avoid these three mistakes, James Faghmo •  https://medium.com/about-data/73258b3848a4 o  Leakage in Data Mining: Formulation, Detection, and Avoidance •  http://www.cs.umb.edu/~‾ding/history/470_670_fall_2011/papers/ cs670_Tran_PreferredPaper_LeakingInDataMining.pdf
  • 43. For your reading & viewing pleasure … An ordered List ①  An Introduction to Statistical Learning •  http://www-bcf.usc.edu/~‾gareth/ISL/ ②  ISL Class Stanford/Hastie/Tibsharani at their best - Statistical Learning •  http://online.stanford.edu/course/statistical-learning-winter-2014 ③  Prof. Pedro Domingo •  https://class.coursera.org/machlearning-001/lecture/preview ④  Prof. Andrew Ng •  https://class.coursera.org/ml-003/lecture/preview ⑤  Prof. Abu Mostafa, CaltechX: CS1156x: Learning From Data •  https://www.edx.org/course/caltechx/caltechx-cs1156x-learning-data-1120 ⑥  Mathematicalmonk @ YouTube •  https://www.youtube.com/playlist?list=PLD0F06AA0D2E8FFBA ⑦  The Elements Of Statistical Learning •  http://statweb.stanford.edu/~‾tibs/ElemStatLearn/ http://www.quora.com/Machine-Learning/Whats-the-easiest-way-to-learn- machine-learning/
  • 45. Bias/Variance (1 of 2) o Model Complexity •  Complex Model increases the training data fit •  But then it overfits & doesn't perform as well with real data o  Bias vs. Variance o  Classical diagram o  From ELSII, By Hastie, Tibshirani & Friedman o  Bias – Model learns wrong things; not complex enough; error gap small; more data by itself won’t help o  Variance – Different dataset will give different error rate; over fitted model; larger error gap; more data could help Prediction Error Training Error Ref: Andrew Ng/Stanford, Yaser S./CalTech Learning Curve
  • 46. Bias/Variance (2 of 2) o High Bias •  Due to Underfitting •  Add more features •  More sophisticated model •  Quadratic Terms, complex equations,… •  Decrease regularization o High Variance •  Due to Overfitting •  Use fewer features •  Use more training sample •  Increase Regularization Prediction Error Training Error Ref: Strata 2013 Tutorial by Olivier Grisel Learning Curve Need  more  features  or  more   complex  model  to  improve   Need  more  data  to  improve  
  • 47. Partition Data ! •  Training (60%) •  Validation(20%) & •  “Vault” Test (20%) Data sets k-fold Cross-Validation •  Split data into k equal parts •  Fit model to k-1 parts & calculate prediction error on kth part •  Non-overlapping dataset Data Partition & Cross-Validation —  Goal ◦  Model Complexity (-) ◦  Variance (-) ◦  Prediction Accuracy (+) Train   Validate   Test   #2   #3   #4   #5   #1   #2   #3   #5   #4   #1   #2   #4   #5   #3   #1   #3   #4   #5   #2   #1   #3   #4   #5   #1   #2   K-­‐fold  CV  (k=5)   Train   Validate  
  • 48. Bootstrap •  Draw datasets (with replacement) and fit model for each dataset •  Remember : Data Partitioning (#1) & Cross Validation (#2) are without replacement Bootstrap & Bagging —  Goal ◦  Model Complexity (-) ◦  Variance (-) ◦  Prediction Accuracy (+) Bagging (Bootstrap aggregation) ◦  Average prediction over a collection of bootstrap-ed samples, thus reducing variance
  • 49. ◦  “Output  of  weak  classifiers  into  a  powerful  commiTee”   ◦  Final  PredicLon  =  weighted  majority  vote     ◦  Later  classifiers  get  misclassified  points     –  With  higher  weight,     –  So  they  are  forced     –  To  concentrate  on  them   ◦  AdaBoost  (AdapLveBoosting)   ◦  BoosLng  vs  Bagging   –  Bagging  –  independent  trees   –  BoosLng  –  successively  weighted   Boosting —  Goal ◦  Model Complexity (-) ◦  Variance (-) ◦  Prediction Accuracy (+)
  • 50. ◦  Builds  large  collecLon  of  de-­‐correlated  trees  &  averages   them   ◦  Improves  Bagging  by  selecLng  i.i.d*  random  variables  for   splikng   ◦  Simpler  to  train  &  tune   ◦  “Do  remarkably  well,  with  very  li@le  tuning  required”  –  ESLII   ◦  Less  suscepLble  to  over  fikng  (than  boosLng)   ◦  Many  RF  implementaLons   –  Original  version  -­‐  Fortran-­‐77  !  By  Breiman/Cutler   –  Python,  R,  Mahout,  Weka,  Milk  (ML  toolkit  for  py),  matlab     * i.i.d – independent identically distributed + http://www.stat.berkeley.edu/~breiman/RandomForests/cc_home.htm Random Forests+ —  Goal ◦  Model Complexity (-) ◦  Variance (-) ◦  Prediction Accuracy (+)
  • 51. ◦  Two  Step   –  Develop  a  set  of  learners   –  Combine  the  results  to  develop  a  composite  predictor   ◦  Ensemble  methods  can  take  the  form  of:   –  Using  different  algorithms,     –  Using  the  same  algorithm  with  different  sekngs   –  Assigning  different  parts  of  the  dataset  to  different  classifiers   ◦  Bagging  &  Random  Forests  are  examples  of  ensemble   method     Ref: Machine Learning In Action Ensemble Methods —  Goal ◦  Model Complexity (-) ◦  Variance (-) ◦  Prediction Accuracy (+)
  • 52. Random Forests o  While Boosting splits based on best among all variables, RF splits based on best among randomly chosen variables o  Simpler because it requires two variables – no. of Predictors (typically √k) & no. of trees (500 for large dataset, 150 for smaller) o  Error prediction •  For each iteration, predict for dataset that is not in the sample (OOB data) •  Aggregate OOB predictions •  Calculate Prediction Error for the aggregate, which is basically the OOB estimate of error rate •  Can use this to search for optimal # of predictors •  We will see how close this is to the actual error in the Heritage Health Prize o  Assumes equal cost for mis-prediction. Can add a cost function o  Proximity matrix & applications like adding missing data, dropping outliers Ref: R News Vol 2/3, Dec 2002 Statistical Learning from a Regression Perspective : Berk A Brief Overview of RF by Dan Steinberg
  • 53. Classifiers   Regression   Continuous Variables Categorical Variables Decision   Trees   k-­‐NN(Nearest   Neighbors)   Bias Variance Model Complexity Over-fitting BoosLng  Bagging   CART  
  • 55. Cross Validation o Reference: •  https://www.kaggle.com/wiki/ GettingStartedWithPythonForDataScience •  Chris Clark ‘s blog : http://blog.kaggle.com/2012/07/02/up-and-running-with-python- my-first-kaggle-entry/ •  Predicive Modelling in py with scikit-learning, Olivier Grisel Strata 2013 •  titanic from pycon2014/parallelmaster/An introduction to Predictive Modeling in Python Refer  to  iPython  notebook  <2-­‐Model-­‐EvaluaLon>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 56. Model Evaluation - Accuracy o Accuracy = o For cases where tn is large compared tp, a degenerate return(false) will be very accurate ! o Hence the F-measure is a better reflection of the model strength Predicted=1   Predicted=0   Actual  =1   True+  (tp)   False-­‐  (fn)   Actual=0   False+  (fp)   True-­‐  (tn)          tp  +  tn   tp+fp+fn+tn    
  • 57. Model Evaluation – Precision & Recall o  Precision = How many items we identified are relevant o  Recall = How many relevant items did we identify o  Inverse relationship – Tradeoff depends on situations •  Legal – Coverage is important than correctness •  Search – Accuracy is more important •  Fraud •  Support cost (high fp) vs. wrath of credit card co.(high fn)        tp   tp+fp     •  Precision     •  Accuracy   •  Relevancy          tp   tp+fn     •  Recall     •  True  +ve  Rate   •  Coverage   •  Sensitivity   •  Hit  Rate   http://nltk.googlecode.com/svn/trunk/doc/book/ch06.html        fp   fp+tn     •  Type  1  Error   Rate   •  False  +ve  Rate   •  False  Alarm  Rate   •  Specificity  =  1  –  fp  rate   •  Type  1  Error  =  fp   •  Type  2  Error  =  fn   Predicted=1   Predicted=0   Actual  =1   True+  (tp)   False-­‐  (fn)   Actual=0   False+  (fp)   True-­‐  (tn)  
  • 58. Confusion Matrix       Actual   Predicted   C1   C2   C3   C4   C1   10   5   9   3   C2   4   20   3   7   C3   6   4   13   3   C4   2   1   4   15   Correct  Ones  (cii)   Precision  =   Columns                  i   cii   cij   Recall  =   Rows            j     cii   cij   Σ Σ
  • 59. Model Evaluation : F-Measure Precision = tp / (tp+fp) : Recall = tp / (tp+fn) F-Measure Balanced, Combined, Weighted Harmonic Mean, measures effectiveness =   β2  P  +  R   Common Form (Balanced F1) : β=1 (α = ½ ) ; F1 = 2PR / P+R +  (1  –  α)  α   1   P   1   R   1   (β2  +  1)PR   Predicted=1   Predicted=0   Actual  =1   True+  (tp)   False-­‐  (fn)   Actual=0   False+  (fp)   True-­‐  (tn)  
  • 60. Hands-on Walkthru - Model Evaluation Train   Test   712 (80%) 179 891 Refer  to  iPython  notebook  <2-­‐Model-­‐EvaluaLon>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 61. ROC Analysis o “How good is my model?” o Good Reference : http://people.inf.elte.hu/kiss/13dwhdm/roc.pdf o “A receiver operating characteristics (ROC) graph is a technique for visualizing, organizing and selecting classifiers based on their performance” o Much better than evaluating a model based on simple classification accuracy o Plots tp rate vs. fp rate o After understanding the ROC Graph, we will draw a few for our models in iPython notebook <2-Model-Evaluation> at https://github.com/xsankar/ freezing-bear
  • 62. ROC Graph - Discussion o  E = Conservative, Everything NO o  H = Liberal, Everything YES o Am not making any political statement ! o  F = Ideal o  G = Worst o  The diagonal is the chance o  North West Corner is good o  South-East is bad •  For example E •  Believe it or Not - I have actually seen a graph with the curve in this region ! E F G H Predicted=1   Predicted=0   Actual  =1   True+  (tp)   False-­‐  (fn)   Actual=0   False+  (fp)   True-­‐  (tn)  
  • 63. ROC Graph – Clinical Example Ifcc  :  Measures  of  diagnostic  accuracy:  basic  definitions  
  • 64. ROC Graph Walk thru o iPython notebook <2-Model-Evaluation> at https://github.com/xsankar/ freezing-bear
  • 65. The Art of a Competition – Session I : Data Science London + Scikit-learn 3:40
  • 66. Few interesting Links-troll the forums o http://www.kaggle.com/c/data-science-london-scikit-learn/visualization/1113 •  Will’s Solution o Quick First prediction : http://www.kaggle.com/c/data-science-london-scikit-learn/visualization/1075 o CV http://www.kaggle.com/c/data-science-london-scikit-learn/visualization/1183 o In-depth Solution : http://www.kaggle.com/c/data-science-london-scikit-learn/forums/t/6528/ solution-discussion o Video http://datasciencelondon.org/machine-learning-python-scikit-learn-ipython- dsldn-data-science-london-kaggle/ o More in http://www.kaggle.com/c/data-science-london-scikit-learn/visualization
  • 67. #1 : SVM-Will Refer  to  iPython  notebook  <3-­‐Session-­‐I>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 68. #3 : Unsupervised Feature Engineering
  • 69. The Art of a Competition - Session II : ASUS, PAKDD2014 The 18th Pacific-Asia Conference on Knowledge Discovery & Data Mining 4:10
  • 70. Data Organization & Approach o Deceptively Simple Data •  Sales •  Repairs •  Predict Future Repairs o Explore data •  Module : M1-M9 •  Component : P1-P31 o Repair before sales o -ve sales o Reason for exploring this competition is to get a feel for a complex dataset in terms of processing Sales   Repairs   Future  Repairs  ?  
  • 71. Approach, Ideas & Results o  Discussions – troll the forums •  http://www.kaggle.com/c/pakdd-cup-2014/forums/t/7573/what-did- you-do-to-get-to-the-top-of-the-board •  Ran Locar, James King, https://github.com/aparij/kaggle_asus/blob/master/ lin_comb_survival.py, Brandon Kam, •  http://www.kaggle.com/c/pakdd-cup-2014/forums/t/6980/sample- submission-benchmark-in-leaderboard •  Beat_benchmark by Chitrasen •  Beat-benchmary.py o  Lots of interesting models & ideas o  Simple linear regression o  Quadratic Time ? o  Batch Mortality Rate o  Breaks with higher repair tendency ? Survival Analysis ? Refer  to  iPython  notebook  <4-­‐Session-­‐II>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 72. #1 – All 0s, All 1s o All 0s o All 1s Refer  to  iPython  notebook  <4-­‐Session-­‐II>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 73. #2 : o Let us get serious & do some transformation o Split o Convert to int64 Refer  to  iPython  notebook  <4-­‐Session-­‐II>     at  hTps://github.com/xsankar/freezing-­‐bear  
  • 74. #3 : Hints To Try o Decay o Kaplan Meier Analysis o Cox Model o Parametric Survival Models
  • 75. The Beginning As The End 4:10
  • 76. The Beginning As the End —  We  started  with  a  set  of   goals   —  Homework   ◦  For  you   –  Go  through  the  slides     –  Do  the  walkthrough   –  Work  on  more  compe00ons   –  Submit  entries  to  Kaggle  
  • 77. References: o  An Introduction to scikit-learn, pycon 2013, Jake Vanderplas •  http://pyvideo.org/video/1655/an-introduction-to-scikit-learn-machine- learning o  Advanced Machine Learning with scikit-learn, pycon 2013, Strata 2014, Olivier Grisel •  http://pyvideo.org/video/1719/advanced-machine-learning-with-scikit-learn o  Just The Basics, Strata 2013, William Cukierski & Ben Hamner •  http://strataconf.com/strata2013/public/schedule/detail/27291 o  The Problem of Multiple Testing •  http://download.journals.elsevierhealth.com/pdfs/journals/1934-1482/ PIIS1934148209014609.pdf