SlideShare a Scribd company logo
1 of 32
Download to read offline
Scott.Clendaniel@MktgSciences.com
Machine Learning: Boosting
Analytics Model Performance
Scott.Clendaniel@MktgSciences.com
THE JOB OF DATA SCIENTISTS
Does this sound familiar to anyone?
Scott.Clendaniel@MktgSciences.com
How to design a strategy
for boosting
performance.
2- Strategy
How to use Feature
Engineering to boost model
performance.
3. Features
Explaining why boosting
performance is relevant.
1- Background
Time for questions from the
audience.
5. Questions
A collection of free resources for
boosting model performance.
4. Bonus Round
AGENDA
Scott.Clendaniel@MktgSciences.com
BOOSTING MODEL PERFOMANCE
Section 1: Background
Scott.Clendaniel@MktgSciences.com
Explaining why boosting
performance is relevant.
1- Background
SECTION 1: Background
Scott.Clendaniel@MktgSciences.com
TIPS SOURCES
Where do the recommendations originate?
197 Kaggle Winner
Interviews
How did they win?
50 In-depth Case
Studies
Which factors mattered
25,000 Head-to-Head
Tests
What made the difference?
Scott.Clendaniel@MktgSciences.com
WHERE HAVE THESE TIPS WORKED?
IMPORTANT: All views expressed are solely my own, and should not be taken
as being those of current or past employers, clients or others.
Scott.Clendaniel@MktgSciences.com
TWO CATEGORIES OF TIPS
Presentation Focus
The plan, method, series of tactics or
stratagems for building your model.
Model Strategy
Part 1
The process for identifying, building,
developing, standardizing, normalizing and
engineering the correct inputs for one or
more analytics processes.
Data Preparation
Part 2
Scott.Clendaniel@MktgSciences.com
BOOSTING MODEL PERFOMANCE
Section 2: Model Strategy
Scott.Clendaniel@MktgSciences.com
How to design a strategy
for boosting
performance.
2- Strategy
Explaining why boosting
performance is relevant.
1- Background
SECTION 2
Strategy
Scott.Clendaniel@MktgSciences.com
Source: Jeong-Yoon Lee, Chief Data
Scientist at Conversion Logic,
https://www.slideshare.net/jeongyoonlee/
data-science-competition-72596610
TIP 1: Leverage Extreme Ensembles
The performance boost from models with non-correlated errors is consistently higher than single models or smaller ensembles.
Source: Owen Zhang, Chief Product
Officer at DataRobot,
https://www.slideshare.net/OwenZhang2
/tips-for-data-science-competitions
• 6-layer process
• 5 distinct data prep steps
• 31 combined feature sets
• 2 layers of 3 models each
2015 Liberty Mutual Contest
Owen Zhang
• 7 feature sets
• 64 component models
• 15 models in Level 1 Ensemble
• 2 models in Level 2 Ensemble
2015 KDD CUP
Jeong-Yoon Lee
Scott.Clendaniel@MktgSciences.com
• Seed lists
• Old, unusable lead sources
• Discontinued markets
MARKETING
Eliminate irrelevant populations
• Low dollar thresholds
• “Best” customers
• Higher authentication transactions
• “Standing” transactions
• Canceled transfers
FRAUD
Eliminate “safer” populations
• What do you already know?
• What is beyond your influence?
• Which problems can be handled separately?
GENERAL
Other instances
TIP 2: Reduce Decision Space
Reduce the Decision Space
Scott.Clendaniel@MktgSciences.com
TIP 3: Use Targeted AUC Instead of Total AUC
Match model objective to organizational objective. Example courtesy of ORACLE.
• Less common approach
• Perfect for projects with target thresholds such as
limited marketing budgets or maximum fraud
referral/ turndown rates
• Sacrifices overall accuracy for accuracy at lower
threshold targets
TARGETED AUC
Optimizes targeted model performance
• Traditional approach
• Perfect for may Kaggle competitions
• Sacrifices accuracy at lower threshold targets for
overall accuracy
TOTAL AUC
Optimizes overall model performance
Scott.Clendaniel@MktgSciences.com
TIP 4: Cross-Validate Everywhere
Reducing overfitting while extracting maximum learning from your data
OUT-OF-SAMPLE VALIDATION
Traditional methodology
CROSS-VALIDATION
Used to reduce both overfitting and outlier influence
Scott.Clendaniel@MktgSciences.com
TIP 5: Algorithm Arsenal
Leverage diverse modeling arsenal
Bayesian Network
Gradient Boosting
Machines
Random Forests
Logistic Regression
Factorization Machines
Neural Network
Genetic Algorithms
Support Vector Machines
Scott.Clendaniel@MktgSciences.com
BOOSTING MODEL PERFOMANCE
Section 3: Features
Scott.Clendaniel@MktgSciences.com
How to design a strategy
for boosting
performance.
2- Strategy
How to use Feature
Engineering to boost model
performance.
3. Features
Explaining why boosting
performance is relevant.
1- Background
SECTION 3
Features
Scott.Clendaniel@MktgSciences.com
TIP 7: Test Variable Transformation Functions
Features
Scott.Clendaniel@MktgSciences.com
“Stumps” represent the first split in
decision trees, and make powerful
“weak learners.” Create a derived
feature for each input.
1. Derive “Stumps”
Using trees creates bin “boundaries”
directly associated with the dependent
variable, rather than a more arbitrary
approach. Assign bins for each
continuous inputs.
2. Bin Continuous Inputs
Missing values assigned to a separate,
unique category preserves information
content and eliminates arbitrary
replacement approaches.
3. Handle Missing Values
Each input, regardless of data type, can
have consistent, normalized scaling by
using something like NORM Sigmoid or
Yule’s Q for each terminal node from
each univariate tree.
5. Normalize scaling
Calling out tree nodes with uniquely
powerful splitting capabilities as
derived features leverages the most
benefit from single inputs.
4. Derive High-Impact Flags
Re-coding the original input into the
values from the terminal nodes makes
interpretation much easier.
6. Overall Transformation
TIPS 8-13: Univariate Tree Feature Engineering
Features
Scott.Clendaniel@MktgSciences.com
Moving Away From… Moving Toward…
TIP 14: Think “Crafts-person-ship”
Less “Assembly Line,” More “Fine Craftsmanship”
Scott.Clendaniel@MktgSciences.com
BOOSTING MODEL PERFOMANCE
Section 4: Bonus Round
Scott.Clendaniel@MktgSciences.com
How to design a strategy
for boosting
performance.
2- Strategy
How to use Feature
Engineering to boost model
performance.
3. Features
Explaining why boosting
performance is relevant.
1- Background
A collection of free resources for
boosting model performance.
4. Bonus Round
SECTION 4
Bonus Round 
Scott.Clendaniel@MktgSciences.com
2. Create Common Table
of Values for Each Node
3. Calculate Z-Score
Across Entire Table
5. Calculate Avg., High
and Low
6. Gradient Boosting4. Assign New Value to
New Derived Feature
1. Univariate Tree
Models
Bonus Round:
Patent-Application IMPACT Features
Patent application approach for transforming and combining model inputs
Scott.Clendaniel@MktgSciences.com
How to design a strategy
for boosting
performance.
2- Strategy
How to use Feature
Engineering to boost model
performance.
3. Features
Explaining why boosting
performance is relevant.
1- Background
Time for questions from the
audience.
5. Questions
A collection of free resources for
boosting model performance.
4. Bonus Round
AGENDA
Scott.Clendaniel@MktgSciences.com
USA 1-443-810-8066
Scott.Clendaniel@MktgSciences.com
MktgSciences
3719 Yolando Road
Baltimore, MD 21218
Get in TouchSee you soon....
Scott.Clendaniel@MktgSciences.com
Source: Jeong-Yoon Lee, Chief Data Scientist at Conversion Logic,
https://www.slideshare.net/jeongyoonlee/data-science-competition-72596610
MODEL STRATEGY TIP 1
Cross-validate everywhere.
Scott.Clendaniel@MktgSciences.com
Source: Owen Zhang, Chief Product Officer at DataRobot,
https://www.slideshare.net/OwenZhang2/tips-for-data-science-competitions
MODEL STRATEGY TIP 1
Cross-validate everywhere.
Scott.Clendaniel@MktgSciences.com
THANK YOU...
Scott.Clendaniel@MktgSciences.com
BOOSTING MODEL PERFOMANCE
Appendix
Scott.Clendaniel@MktgSciences.com
DEFINITIONS
performance
(noun):
“the manner in which or the efficiency
with which something reacts or
fulfills its intended purpose.”
Scott.Clendaniel@MktgSciences.com
Moving Away From… Moving Toward…
PERFORMANCE IS BEING MORE CLOSELY MEASURED
Scott.Clendaniel@MktgSciences.com
PEFORMANCE WILL DETERMINE COMPENSATION
Like it or not, Data Science compensation will become more closely tied to model performance.

More Related Content

What's hot

Going from Good to Great with Concept Testing
Going from Good to Great with Concept TestingGoing from Good to Great with Concept Testing
Going from Good to Great with Concept TestingAtlassian
 
Intro To Lean Startup (8 Oct 2015)
Intro To Lean Startup (8 Oct 2015)Intro To Lean Startup (8 Oct 2015)
Intro To Lean Startup (8 Oct 2015)Mai Quay
 
Testing workshop dayone final accelerator 26022019
Testing workshop dayone final accelerator 26022019Testing workshop dayone final accelerator 26022019
Testing workshop dayone final accelerator 26022019DayOne
 
RMIA Presentation November 19 2008 A Futurist Perspective On Risk By Paul ...
RMIA Presentation November 19  2008   A Futurist Perspective On Risk By Paul ...RMIA Presentation November 19  2008   A Futurist Perspective On Risk By Paul ...
RMIA Presentation November 19 2008 A Futurist Perspective On Risk By Paul ...Paul Higgins
 
Estimate and Measure. Minimize work, maximize value. Part 2
Estimate and Measure. Minimize work, maximize value. Part 2Estimate and Measure. Minimize work, maximize value. Part 2
Estimate and Measure. Minimize work, maximize value. Part 2Shiftup
 
Data driven product management
Data driven product managementData driven product management
Data driven product managementTapan Kamdar
 
Creating Your MVP (or Startup Validation Hacks)
Creating Your MVP (or Startup Validation Hacks)Creating Your MVP (or Startup Validation Hacks)
Creating Your MVP (or Startup Validation Hacks)Abby Fichtner
 
Data-driven product management
Data-driven product managementData-driven product management
Data-driven product managementArseny Kravchenko
 
Is data visualisation bullshit?
Is data visualisation bullshit?Is data visualisation bullshit?
Is data visualisation bullshit?Alban Gérôme
 
Radical Analytics, Web à Québec, Mars 2017 (français)
Radical Analytics, Web à Québec, Mars 2017 (français)Radical Analytics, Web à Québec, Mars 2017 (français)
Radical Analytics, Web à Québec, Mars 2017 (français)Stéphane Hamel
 
2014 future of product management
2014 future of product management2014 future of product management
2014 future of product managementJanice Fraser
 
Leeds Digital Festival - Make Analysis Great Again!
Leeds Digital Festival - Make Analysis Great Again!Leeds Digital Festival - Make Analysis Great Again!
Leeds Digital Festival - Make Analysis Great Again!Ed Thewlis
 
Determining the Why: Developing a UX Strategy
Determining the Why: Developing a UX StrategyDetermining the Why: Developing a UX Strategy
Determining the Why: Developing a UX StrategyAshley Keller
 
Thinking Inside The Box - Systematic Inventive Thinking
Thinking Inside The Box - Systematic Inventive ThinkingThinking Inside The Box - Systematic Inventive Thinking
Thinking Inside The Box - Systematic Inventive ThinkingNguyen Trung Tuyen
 
Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018
Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018 Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018
Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018 Ria Sankar
 
RUFing it out with Customer Feedback: Knowing the “Why”
RUFing it out with Customer Feedback: Knowing the “Why”RUFing it out with Customer Feedback: Knowing the “Why”
RUFing it out with Customer Feedback: Knowing the “Why”Atlassian
 
Customer Discovery at Venture Out Moldova, Fall 2013
Customer Discovery at Venture Out Moldova, Fall 2013Customer Discovery at Venture Out Moldova, Fall 2013
Customer Discovery at Venture Out Moldova, Fall 2013David Kirsch
 
Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19
Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19
Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19Daniel Katz
 

What's hot (20)

Going from Good to Great with Concept Testing
Going from Good to Great with Concept TestingGoing from Good to Great with Concept Testing
Going from Good to Great with Concept Testing
 
Intro To Lean Startup (8 Oct 2015)
Intro To Lean Startup (8 Oct 2015)Intro To Lean Startup (8 Oct 2015)
Intro To Lean Startup (8 Oct 2015)
 
Testing workshop dayone final accelerator 26022019
Testing workshop dayone final accelerator 26022019Testing workshop dayone final accelerator 26022019
Testing workshop dayone final accelerator 26022019
 
RMIA Presentation November 19 2008 A Futurist Perspective On Risk By Paul ...
RMIA Presentation November 19  2008   A Futurist Perspective On Risk By Paul ...RMIA Presentation November 19  2008   A Futurist Perspective On Risk By Paul ...
RMIA Presentation November 19 2008 A Futurist Perspective On Risk By Paul ...
 
Estimate and Measure. Minimize work, maximize value. Part 2
Estimate and Measure. Minimize work, maximize value. Part 2Estimate and Measure. Minimize work, maximize value. Part 2
Estimate and Measure. Minimize work, maximize value. Part 2
 
Data driven product management
Data driven product managementData driven product management
Data driven product management
 
Creating Your MVP (or Startup Validation Hacks)
Creating Your MVP (or Startup Validation Hacks)Creating Your MVP (or Startup Validation Hacks)
Creating Your MVP (or Startup Validation Hacks)
 
Data-driven product management
Data-driven product managementData-driven product management
Data-driven product management
 
Creating a Product Vision
Creating a Product VisionCreating a Product Vision
Creating a Product Vision
 
Is data visualisation bullshit?
Is data visualisation bullshit?Is data visualisation bullshit?
Is data visualisation bullshit?
 
Radical Analytics, Web à Québec, Mars 2017 (français)
Radical Analytics, Web à Québec, Mars 2017 (français)Radical Analytics, Web à Québec, Mars 2017 (français)
Radical Analytics, Web à Québec, Mars 2017 (français)
 
2014 future of product management
2014 future of product management2014 future of product management
2014 future of product management
 
Leeds Digital Festival - Make Analysis Great Again!
Leeds Digital Festival - Make Analysis Great Again!Leeds Digital Festival - Make Analysis Great Again!
Leeds Digital Festival - Make Analysis Great Again!
 
Determining the Why: Developing a UX Strategy
Determining the Why: Developing a UX StrategyDetermining the Why: Developing a UX Strategy
Determining the Why: Developing a UX Strategy
 
Find your Metrics that Matter BoS Masterclass Session 2
Find your Metrics that Matter BoS Masterclass Session 2Find your Metrics that Matter BoS Masterclass Session 2
Find your Metrics that Matter BoS Masterclass Session 2
 
Thinking Inside The Box - Systematic Inventive Thinking
Thinking Inside The Box - Systematic Inventive ThinkingThinking Inside The Box - Systematic Inventive Thinking
Thinking Inside The Box - Systematic Inventive Thinking
 
Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018
Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018 Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018
Ria Sankar - How to Build Winning Products - Product School Bellevue - 83018
 
RUFing it out with Customer Feedback: Knowing the “Why”
RUFing it out with Customer Feedback: Knowing the “Why”RUFing it out with Customer Feedback: Knowing the “Why”
RUFing it out with Customer Feedback: Knowing the “Why”
 
Customer Discovery at Venture Out Moldova, Fall 2013
Customer Discovery at Venture Out Moldova, Fall 2013Customer Discovery at Venture Out Moldova, Fall 2013
Customer Discovery at Venture Out Moldova, Fall 2013
 
Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19
Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19
Lean product discovery: Build the right sh*t - ProductCamp Austin - PCA19
 

Viewers also liked

How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheLeslie Samuel
 
IOT Security - ICCT College of Engineering
IOT Security - ICCT College of EngineeringIOT Security - ICCT College of Engineering
IOT Security - ICCT College of EngineeringPotato
 
Containerd Donation to CNCF Cloud Native Conference Berlin 2017
Containerd Donation to CNCF Cloud Native Conference Berlin 2017Containerd Donation to CNCF Cloud Native Conference Berlin 2017
Containerd Donation to CNCF Cloud Native Conference Berlin 2017Patrick Chanezon
 
ELSA France "Teaching is us!"
ELSA France "Teaching is us!" ELSA France "Teaching is us!"
ELSA France "Teaching is us!" Adrian Scarlett
 
The Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsThe Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsGood Funnel
 
DockerとDocker Hubの操作と概念
DockerとDocker Hubの操作と概念DockerとDocker Hubの操作と概念
DockerとDocker Hubの操作と概念Masahito Zembutsu
 
WiCyS Career Fair Handbook
WiCyS Career Fair HandbookWiCyS Career Fair Handbook
WiCyS Career Fair HandbookClearedJobs.Net
 
Android Things - Solid Foundations
Android Things - Solid FoundationsAndroid Things - Solid Foundations
Android Things - Solid FoundationsPaul Blundell
 
Acting Naturally with Information - IA Summit 2017
Acting Naturally with Information - IA Summit 2017Acting Naturally with Information - IA Summit 2017
Acting Naturally with Information - IA Summit 2017Marsha Haverty
 
5 Reasons A Cloud-Based Phone Saves You Money
5 Reasons A Cloud-Based Phone Saves You Money5 Reasons A Cloud-Based Phone Saves You Money
5 Reasons A Cloud-Based Phone Saves You MoneyTresta
 
Make your CPAN module static installable
Make your CPAN module static installableMake your CPAN module static installable
Make your CPAN module static installableShoichi Kaji
 
Loki: An Opensource Zipkin/Prometheus Mashup written in Go.
Loki: An Opensource Zipkin/Prometheus Mashup written in Go.Loki: An Opensource Zipkin/Prometheus Mashup written in Go.
Loki: An Opensource Zipkin/Prometheus Mashup written in Go.Weaveworks
 
Les candidats à la présidentielle savent-ils gérer leur argent ?
Les candidats à la présidentielle savent-ils gérer leur argent ?Les candidats à la présidentielle savent-ils gérer leur argent ?
Les candidats à la présidentielle savent-ils gérer leur argent ?Grisbee
 
掲載されやすいプレスリリースの作り方
掲載されやすいプレスリリースの作り方掲載されやすいプレスリリースの作り方
掲載されやすいプレスリリースの作り方Yu Matsui
 
MRI Differences: Closed Bore, Open MRI & Wide Bore
MRI Differences: Closed Bore, Open MRI & Wide BoreMRI Differences: Closed Bore, Open MRI & Wide Bore
MRI Differences: Closed Bore, Open MRI & Wide BoreAtlantis Worldwide LLC
 
FrenchWeb 500, le classement des entreprises de la tech française
FrenchWeb 500, le classement des entreprises de la tech françaiseFrenchWeb 500, le classement des entreprises de la tech française
FrenchWeb 500, le classement des entreprises de la tech françaiseFrenchWeb.fr
 
Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1
Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1
Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1Fluxtrol Inc.
 
Building GUI App with Electron and Lisp
Building GUI App with Electron and LispBuilding GUI App with Electron and Lisp
Building GUI App with Electron and Lispfukamachi
 
Xamarin の概要と活用事例
Xamarin の概要と活用事例Xamarin の概要と活用事例
Xamarin の概要と活用事例Yoshito Tabuchi
 

Viewers also liked (20)

How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your Niche
 
IOT Security - ICCT College of Engineering
IOT Security - ICCT College of EngineeringIOT Security - ICCT College of Engineering
IOT Security - ICCT College of Engineering
 
Containerd Donation to CNCF Cloud Native Conference Berlin 2017
Containerd Donation to CNCF Cloud Native Conference Berlin 2017Containerd Donation to CNCF Cloud Native Conference Berlin 2017
Containerd Donation to CNCF Cloud Native Conference Berlin 2017
 
ELSA France "Teaching is us!"
ELSA France "Teaching is us!" ELSA France "Teaching is us!"
ELSA France "Teaching is us!"
 
The Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsThe Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer Interviews
 
DockerとDocker Hubの操作と概念
DockerとDocker Hubの操作と概念DockerとDocker Hubの操作と概念
DockerとDocker Hubの操作と概念
 
WiCyS Career Fair Handbook
WiCyS Career Fair HandbookWiCyS Career Fair Handbook
WiCyS Career Fair Handbook
 
Nuori2017 29.3.2017
Nuori2017 29.3.2017Nuori2017 29.3.2017
Nuori2017 29.3.2017
 
Android Things - Solid Foundations
Android Things - Solid FoundationsAndroid Things - Solid Foundations
Android Things - Solid Foundations
 
Acting Naturally with Information - IA Summit 2017
Acting Naturally with Information - IA Summit 2017Acting Naturally with Information - IA Summit 2017
Acting Naturally with Information - IA Summit 2017
 
5 Reasons A Cloud-Based Phone Saves You Money
5 Reasons A Cloud-Based Phone Saves You Money5 Reasons A Cloud-Based Phone Saves You Money
5 Reasons A Cloud-Based Phone Saves You Money
 
Make your CPAN module static installable
Make your CPAN module static installableMake your CPAN module static installable
Make your CPAN module static installable
 
Loki: An Opensource Zipkin/Prometheus Mashup written in Go.
Loki: An Opensource Zipkin/Prometheus Mashup written in Go.Loki: An Opensource Zipkin/Prometheus Mashup written in Go.
Loki: An Opensource Zipkin/Prometheus Mashup written in Go.
 
Les candidats à la présidentielle savent-ils gérer leur argent ?
Les candidats à la présidentielle savent-ils gérer leur argent ?Les candidats à la présidentielle savent-ils gérer leur argent ?
Les candidats à la présidentielle savent-ils gérer leur argent ?
 
掲載されやすいプレスリリースの作り方
掲載されやすいプレスリリースの作り方掲載されやすいプレスリリースの作り方
掲載されやすいプレスリリースの作り方
 
MRI Differences: Closed Bore, Open MRI & Wide Bore
MRI Differences: Closed Bore, Open MRI & Wide BoreMRI Differences: Closed Bore, Open MRI & Wide Bore
MRI Differences: Closed Bore, Open MRI & Wide Bore
 
FrenchWeb 500, le classement des entreprises de la tech française
FrenchWeb 500, le classement des entreprises de la tech françaiseFrenchWeb 500, le classement des entreprises de la tech française
FrenchWeb 500, le classement des entreprises de la tech française
 
Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1
Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1
Chapter 1a: Fluxtrol Basics of Induction Techniques Part 1
 
Building GUI App with Electron and Lisp
Building GUI App with Electron and LispBuilding GUI App with Electron and Lisp
Building GUI App with Electron and Lisp
 
Xamarin の概要と活用事例
Xamarin の概要と活用事例Xamarin の概要と活用事例
Xamarin の概要と活用事例
 

Similar to Machine Learning/ Data Science: Boosting Predictive Analytics Model Performance

Managing Data Science Projects
Managing Data Science ProjectsManaging Data Science Projects
Managing Data Science ProjectsDanielle Dean
 
Modeling at Scale: SigOpt at TWIMLcon 2019
Modeling at Scale: SigOpt at TWIMLcon 2019Modeling at Scale: SigOpt at TWIMLcon 2019
Modeling at Scale: SigOpt at TWIMLcon 2019SigOpt
 
Tuning for Systematic Trading: Talk 1
Tuning for Systematic Trading: Talk 1Tuning for Systematic Trading: Talk 1
Tuning for Systematic Trading: Talk 1SigOpt
 
Managing an Experimentation Platform by LinkedIn Product Leader
Managing an Experimentation Platform by LinkedIn Product LeaderManaging an Experimentation Platform by LinkedIn Product Leader
Managing an Experimentation Platform by LinkedIn Product LeaderProduct School
 
SigOpt at O'Reilly - Best Practices for Scaling Modeling Platforms
SigOpt at O'Reilly - Best Practices for Scaling Modeling PlatformsSigOpt at O'Reilly - Best Practices for Scaling Modeling Platforms
SigOpt at O'Reilly - Best Practices for Scaling Modeling PlatformsSigOpt
 
ANALYTICS WITHOUT LOSS OF GENERALITY
ANALYTICS WITHOUT LOSS OF GENERALITYANALYTICS WITHOUT LOSS OF GENERALITY
ANALYTICS WITHOUT LOSS OF GENERALITYWit Jakuczun
 
Guide to end end machine learning projects
Guide to end end machine learning projectsGuide to end end machine learning projects
Guide to end end machine learning projectsSkyl.ai
 
Things To Unlearn In Software Development
Things To Unlearn In Software DevelopmentThings To Unlearn In Software Development
Things To Unlearn In Software DevelopmentAlexey Krivitsky
 
Etpl business model canvas workshop oct 2016
Etpl business model canvas workshop oct 2016Etpl business model canvas workshop oct 2016
Etpl business model canvas workshop oct 2016Expara
 
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...DevOps.com
 
Building a Marketing Data Warehouse from Scratch - SMX Advanced 202
Building a Marketing Data Warehouse from Scratch - SMX Advanced 202Building a Marketing Data Warehouse from Scratch - SMX Advanced 202
Building a Marketing Data Warehouse from Scratch - SMX Advanced 202Christopher Gutknecht
 
Barga Galvanize Sept 2015
Barga Galvanize Sept 2015Barga Galvanize Sept 2015
Barga Galvanize Sept 2015Roger Barga
 
DutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive SectorDutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive SectorBigML, Inc
 
Webinar: Small Cells Going to Volume
Webinar: Small Cells Going to VolumeWebinar: Small Cells Going to Volume
Webinar: Small Cells Going to VolumeDavid Chambers
 
Essentials of Effective Presentations
Essentials of Effective PresentationsEssentials of Effective Presentations
Essentials of Effective PresentationsDr. Timothy Kelly
 
UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...
UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...
UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...Joe Lamantia
 
UX STRAT USA Presentation: Joe Lamantia, Bottomline Technologies
UX STRAT USA Presentation: Joe Lamantia, Bottomline TechnologiesUX STRAT USA Presentation: Joe Lamantia, Bottomline Technologies
UX STRAT USA Presentation: Joe Lamantia, Bottomline TechnologiesUX STRAT
 

Similar to Machine Learning/ Data Science: Boosting Predictive Analytics Model Performance (20)

Managing Data Science Projects
Managing Data Science ProjectsManaging Data Science Projects
Managing Data Science Projects
 
Modeling at Scale: SigOpt at TWIMLcon 2019
Modeling at Scale: SigOpt at TWIMLcon 2019Modeling at Scale: SigOpt at TWIMLcon 2019
Modeling at Scale: SigOpt at TWIMLcon 2019
 
Tuning for Systematic Trading: Talk 1
Tuning for Systematic Trading: Talk 1Tuning for Systematic Trading: Talk 1
Tuning for Systematic Trading: Talk 1
 
Managing an Experimentation Platform by LinkedIn Product Leader
Managing an Experimentation Platform by LinkedIn Product LeaderManaging an Experimentation Platform by LinkedIn Product Leader
Managing an Experimentation Platform by LinkedIn Product Leader
 
SigOpt at O'Reilly - Best Practices for Scaling Modeling Platforms
SigOpt at O'Reilly - Best Practices for Scaling Modeling PlatformsSigOpt at O'Reilly - Best Practices for Scaling Modeling Platforms
SigOpt at O'Reilly - Best Practices for Scaling Modeling Platforms
 
ANALYTICS WITHOUT LOSS OF GENERALITY
ANALYTICS WITHOUT LOSS OF GENERALITYANALYTICS WITHOUT LOSS OF GENERALITY
ANALYTICS WITHOUT LOSS OF GENERALITY
 
Guide to end end machine learning projects
Guide to end end machine learning projectsGuide to end end machine learning projects
Guide to end end machine learning projects
 
External slides script v1
External slides script v1External slides script v1
External slides script v1
 
Things To Unlearn In Software Development
Things To Unlearn In Software DevelopmentThings To Unlearn In Software Development
Things To Unlearn In Software Development
 
Etpl business model canvas workshop oct 2016
Etpl business model canvas workshop oct 2016Etpl business model canvas workshop oct 2016
Etpl business model canvas workshop oct 2016
 
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
 
Building a Marketing Data Warehouse from Scratch - SMX Advanced 202
Building a Marketing Data Warehouse from Scratch - SMX Advanced 202Building a Marketing Data Warehouse from Scratch - SMX Advanced 202
Building a Marketing Data Warehouse from Scratch - SMX Advanced 202
 
Lec 24
Lec 24Lec 24
Lec 24
 
Barga Galvanize Sept 2015
Barga Galvanize Sept 2015Barga Galvanize Sept 2015
Barga Galvanize Sept 2015
 
Managing machine learning
Managing machine learningManaging machine learning
Managing machine learning
 
DutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive SectorDutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive Sector
 
Webinar: Small Cells Going to Volume
Webinar: Small Cells Going to VolumeWebinar: Small Cells Going to Volume
Webinar: Small Cells Going to Volume
 
Essentials of Effective Presentations
Essentials of Effective PresentationsEssentials of Effective Presentations
Essentials of Effective Presentations
 
UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...
UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...
UX STRAT 2018 | Flying Blind On a Rocket Cycle: Pioneering Experience Centere...
 
UX STRAT USA Presentation: Joe Lamantia, Bottomline Technologies
UX STRAT USA Presentation: Joe Lamantia, Bottomline TechnologiesUX STRAT USA Presentation: Joe Lamantia, Bottomline Technologies
UX STRAT USA Presentation: Joe Lamantia, Bottomline Technologies
 

Recently uploaded

CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxMohammedJunaid861692
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Onlineanilsa9823
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...amitlee9823
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...Pooja Nehwal
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxolyaivanovalion
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxolyaivanovalion
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxolyaivanovalion
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...shivangimorya083
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...shambhavirathore45
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 

Recently uploaded (20)

CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptx
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptx
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 

Machine Learning/ Data Science: Boosting Predictive Analytics Model Performance