SlideShare a Scribd company logo
1 of 61
When Model Interpretation Matters:
Understanding Complex Predictive Models
Dean	Abbo)	
Co-Founder	and	Chief	Data	Scien6st,	SmarterHQ	
President,	Abbo)	Analy6cs	
Twi)er:	@deanabb
©	Abbo)	Analy6cs,	2014-2017	
Your Boss
©	Abbo)	Analy6cs,	2014-2017	
Simple Models…Simple Story
©	Abbo)	Analy6cs,	2014-2017	
Variable Importance in Linear Regression
©	Abbo)	Analy6cs,	2014-2017	
Variable Importance in Decision Trees
•  Decision	Trees	
–  You	think	this	is	
	easy	to	explain?
©	Abbo)	Analy6cs,	2014-2017	
Variable Importance in Decision Trees
•  Decision	Trees	
–  How	about	this?	
•  Decision	Trees	
–  You	think	this	is	
	easy	to	explain?
©	Abbo)	Analy6cs,	2014-2017	
Then We Do This
©	Abbo)	Analy6cs,	2014-2017	
Variable Importance in Neural Networks
•  Huh?
©	Abbo)	Analy6cs,	2014-2017	
Neural Networks:
So we do this!
©	Abbo)	Analy6cs,	2014-2017	
The Truly “Engaged” Even Do This!
©	Abbo)	Analy6cs,	2014-2017	
To be Fair: Other Ways to Compute Neural Network Sensitivities
Such	as…	h)p://www.palisade.com/downloads/pdf/academic/DTSpaper110915.pdf	
And	Sp://Sp.sas.com/pub/neural/importance.html#mlp_parder_interp	
	
•  Weight	tracing	–	sum	of	product	of	weights	(and	variants)	
	
•  Par6al	deriva6ves	–	avg,	avg	absolute,	squared,	etc.	
	
•  Remove	variable,	compute	change	in	accuracy
©	Abbo)	Analy6cs,	2014-2017	
Naïve Bayes Model Outputs
Essen6ally	a	series	of	
cross-tabs	for	every	
variable!	
	
Remember,	the	final	
probability	is	the	
product	of	the	
individual	variable	
probabili6es.
©	Abbo)	Analy6cs,	2014-2017	
SVM Output
The	
Support	
Vectors	
define	the	
decision	
boundary!
©	Abbo)	Analy6cs,	2014-2017	
What About Model Ensembles?
Decision Logic
Ensemble Prediction
10s,	100s,	1000s	of	trees…
©	Abbo)	Analy6cs,	2014-2017	
What About Model Ensembles?
Decision Logic
Ensemble Prediction
10s,	100s,	1000s	of	trees…	
“A	forest	of	trees	is	impenetrable	as	far	as	simple	
interpreta6ons	of	its	mechanism	go.”	–		
L.	Breiman.	Random	forests.	Machine	Learning,	
45(1):	5–32,2001.	18.		
(h)ps://www.stat.berkeley.edu/~breiman/randomforest2001.pdf)
©	Abbo)	Analy6cs,	2014-2017
©	Abbo)	Analy6cs,	2014-2017	
Breiman’s Solution to “Impenetrable”
h)ps://www.stat.berkeley.edu/~breiman/Using_random_forests_v4.0.pdf
©	Abbo)	Analy6cs,	2014-2017	
Permutation Importance Available in Salford Systems SPM,
scikit-learn and R
©	Abbo)	Analy6cs,	2014-2017	
Outline
•  Classical	variable	importance:	linear	regression	
•  Input	Shuffling	for	Regression:	compare	and	contrast	
with	classical	regression	importance	
•  Extend	to	other	regression	algorithms	
•  Extend	to	classifica6on	
•  Demonstrate	on	larger	dataset
©	Abbo)	Analy6cs,	2014-2017	
The Data: Easiest Possible!
•  3	inputs:	each	is	a	random	Normal:	mean	=	20,	std	=	5	
•  Target	variable:	0.5*var1	+	0.2*var2	+	0.3*var3	
•  95,412	records	(same	size	as	cup98lrn)
©	Abbo)	Analy6cs,	2014-2017	
Linear Regression Coefficient
For Each Variable to Assess Influence
•  Coefficient	match	(be	defini6on)	the	propor6ons	used	to	
be	build	the	target	variable	
•  This	is	the	average	influence	of	each	input	on	the	
predic6ons	for	all	records
©	Abbo)	Analy6cs,	2014-2017	
Assess Influence with t-proportion
For Each Variable
©	Abbo)	Analy6cs,	2014-2017	
Assess Influence with t-proportion
For Each Variable
•  T-value	measures	the	significance	of	the	rela6onship.
©	Abbo)	Analy6cs,	2014-2017	
Assess Influence with t-proportion
For Each Variable
•  T-value	measures	the	significance	of	the	rela6onship.		
•  It	turns	out,	that	the	propor$on	of	the	t-values	for	the	exact	model	
matches	the	coefficients
©	Abbo)	Analy6cs,	2014-2017	
Assess Influence using Direct Measure of
Influence Proportion
•  Compute	the	contribu6on	of	each	term	in	the	linear	regression	
model	separately	(each	record).		
–  Var1_influence	=	var1coef	*	var1	
–  Var2_influence	=	var2coef	*	var2	
–  Var3_influence	=	var3coef	*	var3
©	Abbo)	Analy6cs,	2014-2017	
Assess Influence using Direct Measure of
Influence Proportion
•  Compute	the	contribu6on	of	each	term	in	the	linear	regression	
model	separately	(each	record).		
–  Var1_influence	=	var1coef	*	var1,	etc.	
•  For	each	term/input,	compute	the	propor6on	of	the	contribu6on	
of	the	predicted	target	variable	value	
–  What	propor6on	of	the	predic6on	comes	from	each	input?	
–  Var1_propor6on	=	Var1_influence	/	SUM(all	variable	influences)
©	Abbo)	Analy6cs,	2014-2017	
Assess Influence using Direct Measure of
Influence Proportion
•  Compute	the	contribu6on	of	each	term	in	the	linear	regression	model	
separately	(each	record).		
–  Var1_influence	=	var1coef	*	var1,	etc.	
•  For	each	term/input,	compute	the	propor6on	of	the	contribu6on	of	the	
predicted	target	variable	value	
–  How	much	of	the	predic6on	comes	from	each	input?	
•  Average	the	contribu6ons	of	each	variable	for	each	record	to	compute	
the	average	influence	of	each	variable
©	Abbo)	Analy6cs,	2014-2017	
So Far So Good
•  Now	let’s	do	the	
same	thing	for		
–  Neural	Networks		
–  Support	Vector	
Machines.
©	Abbo)	Analy6cs,	2014-2017	
So Far So Good
•  Now	let’s	do	the	same	
thing	for		
–  Neural	Networks		
–  Support	Vector	Machines.
©	Abbo)	Analy6cs,	2014-2017	
Motivation for Input Shuffling / Permutation Importance
h)p://www.elderresearch.com/company/target-shuffling
©	Abbo)	Analy6cs,	2014-2017	
Why “Input Shuffling” / Permutation Importance ?
•  We	don’t	always	have	nice	metrics	
to	assess	inputs	of	predic6ve	
models	--	Neural	Networks,	SVM,	
ensembles	
–  Contrast	with	sta6s6cal	methods	like	
Regression	
•  Even	with	regression,	we	don’t	
always	have	the	right	input	
distribu6ons	so	these	metrics	are	
good	indicators	of	variable	
influence
©	Abbo)	Analy6cs,	2014-2017	
Input Distributions Are Not Always Ideal
©	Abbo)	Analy6cs,	2014-2017	
What does “Shuffled” mean?
•  Scramble	(randomly)	a	single	input	
variable	
–  Input	Shuffling	Node	doesn’t	have	to	be	
in	a	loop;	it	can	scramble	a	column	while	
leaving	the	others	in	their	natural	order	
•  Captures	the	actual	distribu6on	of	
the	data	
This	node	from	open	source	soSware	KNIME	
h)p://www.knime.com
©	Abbo)	Analy6cs,	2014-2017	
Principles of Input Shuffling
•  Key:	randomly	re-populate	values	of	a	single	input	variable	while	leaving	
all	other	variables	with	their	original	values	
•  Compute	the	standard	devia6on	(or	some	other	measure	of	perturba6on)	
for	each	record	
–  Of	the	Predicted	Target	Variable	–	posterior	probability	
–  NOT	the	actual	target	variable	value	
•  This	perturba6on	is	a	measure	of	how	influen6al	the	variable	is	in	the	
model	
–  High	standard	devia6on	->	lots	of	influence	
–  Low	standard	devia6on	->	not	much	influence	
–  ~0	standard	devia6on	->	no	influence
©	Abbo)	Analy6cs,	2014-2017	
Shuffled Inputs Meta Node
Two	Loops:	(1)	loop	on	input	variables	and	(2)	shuffle	input	variable	(50x	or	so)
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model	
2.  For	the	training	set	(or	suitable	subset),	loop	over	every	variable
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model	
2.  For	the	training	set	(or	suitable	subset),	loop	over	every	variable	
1.  For	every	variable	(in	loop),	loop	M	6mes	(50	by	default)	
1.  Shuffle	the	variable	(keeping	all	other	inputs	for	that	row	fixed)		
2.  Score	the	Model	
3.  Save	the	scores	for	the	en6re	data	set	(you	will	end	up	with
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model	
2.  For	the	training	set	(or	suitable	subset),	loop	over	every	variable	
1.  For	every	variable	(in	loop),	loop	M	6mes	(50	by	default)	
1.  Shuffle	the	variable	(keeping	all	other	inputs	for	that	row	fixed)		
2.  Score	the	Model	
3.  Save	all	the	scores	for	the	en6re	data	set	(M	scores)
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model	
2.  For	the	training	set	(or	suitable	subset),	loop	over	every	variable	
1.  For	every	variable	(in	loop),	loop	M	6mes	(50	by	default)	
1.  Shuffle	the	variable	(keeping	all	other	inputs	for	that	row	fixed)		
2.  Score	the	Model	
3.  Save	all	the	scores	for	the	en6re	data	set	(M	scores)	
2.  Compute	the	standard	devia6on	of	the	predic6ons	for	each	row	(or	
some	other	measure	of	“spread”),	i.e.,	group	by	Row	ID,	compu6ng	
stdev.	Now	we	have	N	records	again
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model	
2.  For	the	training	set	(or	suitable	subset),	loop	over	every	variable	
1.  For	every	variable	(in	loop),	loop	M	6mes	(50	by	default)	
1.  Shuffle	the	variable	(keeping	all	other	inputs	for	that	row	fixed)		
2.  Score	the	Model	
3.  Save	all	the	scores	for	the	en6re	data	set	(M	scores)	
2.  Compute	the	standard	devia6on	of	the	predic6ons	for	each	row	(or	
some	other	measure	of	“spread”),	i.e.,	group	by	Row	ID,	compu6ng	
stdev.	Now	we	have	N	records	again	
3.  Compute	the	average	spread	of	an	input	over	all	N	records,	such	as	
the	mean	of	these	standard	devia6ons,	i.e.,	group	by	en6re	data	set.	
Now	we	have	1	number,	the	variable	influence
©	Abbo)	Analy6cs,	2014-2017	
The Input Shuffling Process
1.  Build	the	predic6ve	model	
2.  For	the	training	set	(or	suitable	subset),	loop	over	every	variable	
1.  For	every	variable	(in	loop),	loop	M	6mes	(50	by	default)	
1.  Shuffle	the	variable	(keeping	all	other	inputs	for	that	row	fixed)		
2.  Score	the	Model	
3.  Save	all	the	scores	for	the	en6re	data	set	(M	scores)	
2.  Compute	the	standard	devia6on	of	the	predic6ons	for	each	row	(or	
some	other	measure	of	“spread”),	i.e.,	group	by	Row	ID,	compu6ng	
stdev.	Now	we	have	N	records	again	
3.  Compute	the	average	spread	of	an	input	over	all	N	records,	such	as	
the	mean	of	these	standard	devia6ons,	i.e.,	group	by	en6re	data	set.	
Now	we	have	1	number,	the	variable	influence	
3.  Compare	all	results.	Sort	descending	by	variable	influence.
©	Abbo)	Analy6cs,	2014-2017	
Single Record: what it looks like
•  ASer	50	“input	shuffles”:				Row0
©	Abbo)	Analy6cs,	2014-2017	
Single Record: what it looks like
•  ASer	50	“input	shuffles”:				Row0
©	Abbo)	Analy6cs,	2014-2017	
Average for All Records in data
•  Measures	the	spread	of	the	predic6ons	when	randomly	perturbing	
the	single	input	variable
©	Abbo)	Analy6cs,	2014-2017	
Input Shuffling Result:
Idealized Linear Regression Data
•  Compute	propor6on	of	the	average	standard	devia6on	from	
shuffling	the	input	(keeping	others	with	the	original	values)	
•  (yes,	I	know	I’m	averaging	standard	devia6ons!)	
Target	variable:	0.5*var1	+	0.2*var2	+	0.3*var3
©	Abbo)	Analy6cs,	2014-2017	
Realistic Data: KDD Cup 1998
•  95,412:	cup98lrn	from	KDD	Cup	1998	Compe66on	
–  Use	only	the	responders	(4843)	in	linear	regression	models	
•  Hundreds	of	fields	in	data,	but	only	use	4	for	our	purposes	here	
–  LASTGIFT,	NGIFTALL,		
RFA_2F,	D_RFA_2A	
•  Con6nuous	target	
•  Two	con6nuous	inputs	
•  One	ordinal	input	(RFA_2F)	
•  One	dummy	input	(D_RFA_2A)
©	Abbo)	Analy6cs,	2014-2017	
Realistic Data: KDD Cup 1998
•  Heavy	skew	of	LASTGIFT,	NGIFTALL,	TARGET_D	
–  Makes	visualiza6on	difficult	
–  Biases		
regression		
coefficients		
(if	
one	cares)	
–  So,	do	the	usual	
	“best	prac6ces”
©	Abbo)	Analy6cs,	2014-2017	
For Regression Modeling, Normalize the Data
•  To	remove	influence	of	skew	and	scale	
–  Log10	transform	LASTGIFT,	NGIFTALL,	TARGET_D	
–  Scale	all	variables	(post	log10)	to	[0,	1]
©	Abbo)	Analy6cs,	2014-2017	
For Regression Modeling, Normalize the Data
•  Rela6onships	clearer	
–  LASTGIFT	strong	posi6ve	correla6on	with	TARGET_D	
–  NGIFTALL,	RFA_2F,	D_RFA_2A	all	have	apparently	slight	nega6ve		
correla6on		
with		
TARGET_D
©	Abbo)	Analy6cs,	2014-2017	
The Basic Model: Linear Regression
Coefficient	
Use	abs()	for	influence	calcula7ons
©	Abbo)	Analy6cs,	2014-2017	
Linear Regression:
Compare Influence Using Different Methods
Coefficient	 t-Propor7on	
Use	abs()	for	t-propor7on	calcula7ons	Use	abs()	for	influence	calcula7ons
©	Abbo)	Analy6cs,	2014-2017	
Linear Regression:
Compare Influence Using Different Methods
Coefficient	 t-Propor7on	
Direct	Propor7on	 Input	Shuffling	Propor7on	
Use	abs()	for	t-propor6on	calcula6ons	Use	abs()	for	calcula6ons	
Use	abs()	for	t-propor6on	calcula6ons	Use	abs()	for	calcula6ons
©	Abbo)	Analy6cs,	2014-2017	
Linear Regression, Neural Network: Input Shuffling
Influence
Input	Shuffling-	LR	 Input	Shuffling	-	MLP
©	Abbo)	Analy6cs,	2014-2017	
Applying Input Shuffling to Classification: Logistic Regression
Start	simple:	just	4	variables	(like	the	regression	example)
©	Abbo)	Analy6cs,	2014-2017	
Applying Input Shuffling to Classification: Logistic Regression
Influence	Based	on	Propor7on	of	z-score	 Influence	Based	on	Input	Shuffling
©	Abbo)	Analy6cs,	2014-2017	
Ranking Larger Numbers of Variables:
Regression Example (TARGET_D)
©	Abbo)	Analy6cs,	2014-2017	
Ranking Larger Numbers of Variables:
Regression Example (TARGET_D)
©	Abbo)	Analy6cs,	2014-2017	
Ranking Larger Numbers of Variables:
Regression Example (TARGET_D)
©	Abbo)	Analy6cs,	2014-2017	
Conclusion
•  Input	shuffling	(Permuta6on	Importance)	can	generate	
model	sensi$vity	scores	for	any	model,	no	ma)er	how	
complex	or	nonlinear	
	
•  Input	shuffling	can	be	applied	to	any	algorithm,	no	
ma)er	how	linear	or	nonlinear	the	algorithm	is	
•  Matches	linear	regression	variable	influence	(t-value)	
•  Similar	to	logis6c	regression	variable	influence	(z-
score)
©	Abbo)	Analy6cs,	2014-2017	
Improvements
•  Scores	shown	here	are	on	average	aggregates	of	the	en6re	data	space	
•  Will	tell	a	less	powerful	story	or	even	be	misleading	if	
–  model	predic6ons	(scores)	are	not	normally	distributed,		
–  the	input	influence	is	not	uniform,	
•  Solu6on:	predic6ons	into	quan6les	(deciles	or	oth	er	number	of	bins)	
and	compute	the	permuta6on	importance	score	for	every	quan6le	
–  Answers	the	ques6on:	for	high	predicted	values,	which	variables	are	most	
influen6al	
•  Build	score	influence	rather	than	predic6on	influence	
–  Use	ROC	AUC	sta6s6cs	for	each	shuffled	input,	and	determine	the	influence	of	each	
variable	on	the	model	score	rather	than	the	predicted	value

More Related Content

Similar to 1530 track 2 abbott_using our laptop

Business Analytics Foundation with R Tools Part 1
Business Analytics Foundation with R Tools Part 1Business Analytics Foundation with R Tools Part 1
Business Analytics Foundation with R Tools Part 1Beamsync
 
U3 IP.savMKTG420_U3IP.docUnit 3 Individual Project .docx
U3 IP.savMKTG420_U3IP.docUnit 3 Individual Project      .docxU3 IP.savMKTG420_U3IP.docUnit 3 Individual Project      .docx
U3 IP.savMKTG420_U3IP.docUnit 3 Individual Project .docxwillcoxjanay
 
CFA II Quantitative Analysis
CFA II Quantitative AnalysisCFA II Quantitative Analysis
CFA II Quantitative AnalysisPristine Careers
 
Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]akm sabbir
 
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...Sri Ambati
 
Index Number (Business Statistics Tutorial )
Index Number (Business Statistics Tutorial )Index Number (Business Statistics Tutorial )
Index Number (Business Statistics Tutorial )Mahmudul Hasan Nakib
 
AOTB Accounting for Agile
AOTB Accounting for AgileAOTB Accounting for Agile
AOTB Accounting for AgileBrett Ansley
 
BAEB601 Chapter 4 : Findings, Analysis and SPSS
BAEB601 Chapter 4 : Findings, Analysis and SPSSBAEB601 Chapter 4 : Findings, Analysis and SPSS
BAEB601 Chapter 4 : Findings, Analysis and SPSSDr Nur Suhaili Ramli
 
MATH 107 Great Stories /newtonhelp.com
MATH 107 Great Stories /newtonhelp.comMATH 107 Great Stories /newtonhelp.com
MATH 107 Great Stories /newtonhelp.combellflower184
 
Slides for "Do Deep Generative Models Know What They Don't know?"
Slides for "Do Deep Generative Models Know What They Don't know?"Slides for "Do Deep Generative Models Know What They Don't know?"
Slides for "Do Deep Generative Models Know What They Don't know?"Julius Hietala
 
Fuzzy Matching to the Rescue
Fuzzy Matching to the RescueFuzzy Matching to the Rescue
Fuzzy Matching to the RescueDomino Data Lab
 
PM Notebook - Appendix H - Formula Sheet
PM Notebook - Appendix H - Formula SheetPM Notebook - Appendix H - Formula Sheet
PM Notebook - Appendix H - Formula SheetMohammad Elsheimy
 
A gentle introduction to growth curves using SPSS
A gentle introduction to growth curves using SPSSA gentle introduction to growth curves using SPSS
A gentle introduction to growth curves using SPSSsmackinnon
 
Power of SPL
Power of SPLPower of SPL
Power of SPLSplunk
 
Market Index Forecasting Model
Market Index Forecasting ModelMarket Index Forecasting Model
Market Index Forecasting Modelijtsrd
 
Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...
Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...
Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...QuantInsti
 
Chapter7 abm book_noha_nagi
Chapter7 abm book_noha_nagiChapter7 abm book_noha_nagi
Chapter7 abm book_noha_nagiNoha Nagi
 

Similar to 1530 track 2 abbott_using our laptop (20)

Highlight OpenStack survey
Highlight OpenStack surveyHighlight OpenStack survey
Highlight OpenStack survey
 
Business Analytics Foundation with R Tools Part 1
Business Analytics Foundation with R Tools Part 1Business Analytics Foundation with R Tools Part 1
Business Analytics Foundation with R Tools Part 1
 
U3 IP.savMKTG420_U3IP.docUnit 3 Individual Project .docx
U3 IP.savMKTG420_U3IP.docUnit 3 Individual Project      .docxU3 IP.savMKTG420_U3IP.docUnit 3 Individual Project      .docx
U3 IP.savMKTG420_U3IP.docUnit 3 Individual Project .docx
 
CFA II Quantitative Analysis
CFA II Quantitative AnalysisCFA II Quantitative Analysis
CFA II Quantitative Analysis
 
Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]Biomedical Word Sense Disambiguation presentation [Autosaved]
Biomedical Word Sense Disambiguation presentation [Autosaved]
 
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
 
Index Number (Business Statistics Tutorial )
Index Number (Business Statistics Tutorial )Index Number (Business Statistics Tutorial )
Index Number (Business Statistics Tutorial )
 
AOTB Accounting for Agile
AOTB Accounting for AgileAOTB Accounting for Agile
AOTB Accounting for Agile
 
Toshiaki Nakazawa - 2015 - Over of the 2nd Workshop on Asian Translation
Toshiaki Nakazawa - 2015 - Over of the 2nd Workshop on Asian TranslationToshiaki Nakazawa - 2015 - Over of the 2nd Workshop on Asian Translation
Toshiaki Nakazawa - 2015 - Over of the 2nd Workshop on Asian Translation
 
BAEB601 Chapter 4 : Findings, Analysis and SPSS
BAEB601 Chapter 4 : Findings, Analysis and SPSSBAEB601 Chapter 4 : Findings, Analysis and SPSS
BAEB601 Chapter 4 : Findings, Analysis and SPSS
 
MATH 107 Great Stories /newtonhelp.com
MATH 107 Great Stories /newtonhelp.comMATH 107 Great Stories /newtonhelp.com
MATH 107 Great Stories /newtonhelp.com
 
Slides for "Do Deep Generative Models Know What They Don't know?"
Slides for "Do Deep Generative Models Know What They Don't know?"Slides for "Do Deep Generative Models Know What They Don't know?"
Slides for "Do Deep Generative Models Know What They Don't know?"
 
Fuzzy Matching to the Rescue
Fuzzy Matching to the RescueFuzzy Matching to the Rescue
Fuzzy Matching to the Rescue
 
PM Notebook - Appendix H - Formula Sheet
PM Notebook - Appendix H - Formula SheetPM Notebook - Appendix H - Formula Sheet
PM Notebook - Appendix H - Formula Sheet
 
A gentle introduction to growth curves using SPSS
A gentle introduction to growth curves using SPSSA gentle introduction to growth curves using SPSS
A gentle introduction to growth curves using SPSS
 
Power of SPL
Power of SPLPower of SPL
Power of SPL
 
Abstractive Review Summarization
Abstractive Review SummarizationAbstractive Review Summarization
Abstractive Review Summarization
 
Market Index Forecasting Model
Market Index Forecasting ModelMarket Index Forecasting Model
Market Index Forecasting Model
 
Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...
Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...
Masterclass: Natural Language Processing in Trading with Terry Benzschawel & ...
 
Chapter7 abm book_noha_nagi
Chapter7 abm book_noha_nagiChapter7 abm book_noha_nagi
Chapter7 abm book_noha_nagi
 

More from Rising Media, Inc.

1415 track 1 wu_using his laptop
1415 track 1 wu_using his laptop1415 track 1 wu_using his laptop
1415 track 1 wu_using his laptopRising Media, Inc.
 
1620 keynote olson_using our laptop
1620 keynote olson_using our laptop1620 keynote olson_using our laptop
1620 keynote olson_using our laptopRising Media, Inc.
 
1530 track 2 stuart_using our laptop
1530 track 2 stuart_using our laptop1530 track 2 stuart_using our laptop
1530 track 2 stuart_using our laptopRising Media, Inc.
 
1530 track 1 fader_using our laptop
1530 track 1 fader_using our laptop1530 track 1 fader_using our laptop
1530 track 1 fader_using our laptopRising Media, Inc.
 
1215 daa lunch owusu_using our laptop
1215 daa lunch owusu_using our laptop1215 daa lunch owusu_using our laptop
1215 daa lunch owusu_using our laptopRising Media, Inc.
 
1215 daa lunch a bos intro slides_using our laptop
1215 daa lunch a bos intro slides_using our laptop1215 daa lunch a bos intro slides_using our laptop
1215 daa lunch a bos intro slides_using our laptopRising Media, Inc.
 
855 sponsor movassate_using our laptop
855 sponsor movassate_using our laptop855 sponsor movassate_using our laptop
855 sponsor movassate_using our laptopRising Media, Inc.
 
1325 keynote yale_pdf shareable
1325 keynote yale_pdf shareable1325 keynote yale_pdf shareable
1325 keynote yale_pdf shareableRising Media, Inc.
 
905 keynote peele_using our laptop
905 keynote peele_using our laptop905 keynote peele_using our laptop
905 keynote peele_using our laptopRising Media, Inc.
 

More from Rising Media, Inc. (20)

1415 track 1 wu_using his laptop
1415 track 1 wu_using his laptop1415 track 1 wu_using his laptop
1415 track 1 wu_using his laptop
 
Matt gershoff
Matt gershoffMatt gershoff
Matt gershoff
 
Keynote adam greco
Keynote adam grecoKeynote adam greco
Keynote adam greco
 
1620 keynote olson_using our laptop
1620 keynote olson_using our laptop1620 keynote olson_using our laptop
1620 keynote olson_using our laptop
 
1530 track 2 stuart_using our laptop
1530 track 2 stuart_using our laptop1530 track 2 stuart_using our laptop
1530 track 2 stuart_using our laptop
 
1530 track 1 fader_using our laptop
1530 track 1 fader_using our laptop1530 track 1 fader_using our laptop
1530 track 1 fader_using our laptop
 
1415 track 2 richardson
1415 track 2 richardson1415 track 2 richardson
1415 track 2 richardson
 
1215 daa lunch owusu_using our laptop
1215 daa lunch owusu_using our laptop1215 daa lunch owusu_using our laptop
1215 daa lunch owusu_using our laptop
 
1215 daa lunch a bos intro slides_using our laptop
1215 daa lunch a bos intro slides_using our laptop1215 daa lunch a bos intro slides_using our laptop
1215 daa lunch a bos intro slides_using our laptop
 
915 e metrics_claudia perlich
915 e metrics_claudia perlich915 e metrics_claudia perlich
915 e metrics_claudia perlich
 
855 sponsor movassate_using our laptop
855 sponsor movassate_using our laptop855 sponsor movassate_using our laptop
855 sponsor movassate_using our laptop
 
1615 plack using our laptop
1615 plack using our laptop1615 plack using our laptop
1615 plack using our laptop
 
1530 rimmele do not share
1530 rimmele do not share1530 rimmele do not share
1530 rimmele do not share
 
1325 keynote yale_pdf shareable
1325 keynote yale_pdf shareable1325 keynote yale_pdf shareable
1325 keynote yale_pdf shareable
 
1115 fiztgerald schuchardt
1115 fiztgerald schuchardt1115 fiztgerald schuchardt
1115 fiztgerald schuchardt
 
1000 kondic do not share
1000 kondic do not share1000 kondic do not share
1000 kondic do not share
 
905 keynote peele_using our laptop
905 keynote peele_using our laptop905 keynote peele_using our laptop
905 keynote peele_using our laptop
 
Stephen morse sharable
Stephen morse sharableStephen morse sharable
Stephen morse sharable
 
Elder shareable
Elder shareableElder shareable
Elder shareable
 
1115 ramirez using our laptop
1115 ramirez using our laptop1115 ramirez using our laptop
1115 ramirez using our laptop
 

Recently uploaded

Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
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
 
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
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
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
 
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
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023ymrp368
 
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
 
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
 
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
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 

Recently uploaded (20)

Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
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
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
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
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
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
 
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
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023
 
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
 
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
 
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
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 

1530 track 2 abbott_using our laptop