SlideShare a Scribd company logo
ACDC:	Alpha-Carving	Decision	
Chain	for	Risk	Stratification
Yubin	Park,	Accordion	Health,	Inc.
Joyce	Ho,	Emory	University
JoydeepGhosh,	The	University	of	Texas	at	Austin
1ICML	WHI	2016
What	is	Decision	Chain	(DC)?
• Also	known	as	Rule	Lists	(Wang	&	Rudin,	2015)
• A	sequence	of	rules,	applied	to	one	after	another,	where	the	ratio	of	
positive	class	increases	over	the	sequence	of	rules	
• Toy	Example:	A	decision	chain	for	predicting	the	likelihood	of	being	a	
Longhorn	fan,	
• If	Tom	lives	in	Austin,	TX	à 25% chance	of	being	a	Longhorn	fan
• And	Tom	likes	to	watch	football	games	à 50% chance	
• And	Tom	goes	out	for	a	tail	gate	on	every	Saturday	à 75% chance
• And	Tom	wears	burnt	orange	t-shirts	all	the	time	à 95% chance
2ICML	WHI	2016
Conceptually,	something	like	this
3
+ +
+
✓A ✓B
S1
S1
S0
S0
S2
S2
+ +
+
✓A ✓B
S1
S1
S0
S0
S2
S2
Decision	Tree Decision	Chain
ICML	WHI	2016
Is	DC	More	Interpretable	than	DT?
• In	Decision	Chain	(DC),
• Risk	is	proportional	to	the	number	of	rules
• Less	to	memorize	for	filtering	out	low-risk	population	(or	samples)
• More	to	memorize	for	capturing	high-risk	population
• Using	DC,	one	can	implement	an	economically	efficient	business	process	
based	on	job	maturity-level
• While	in	Decision	Tree	(DT),
• The	number	of	rules	is	agnostic	to	risk
• Low-risk	can	be	captured	with	one	rule	as	well	as	hundreds	of	rules
• Thus,	DC	may	be	helpful	for	some	applications
4ICML	WHI	2016
In	Healthcare	Applications,
• Class	imbalance	problems	are	prevalent
• Majority	class	examples	can	be	often	carved	out	(or	filtered	out)	with	
a	simple	conjunction	of	if-else	statements
• An	implementation	strategy
• Filter	out	majority	class	with	rules	à Obtain	a	less	imbalanced	dataset	à
Apply	a	fancy	machine	learning	algorithm
• One	question:How	many	majority	examples	should	I	filter	out?
• A	possible	solution:If	we	build	a	decision	chain,	then	we	can	streamline	grid-
search	much	easily
• DC	can	be	more	interpretable	as	well	as	more	efficient	(sometimes)	
5ICML	WHI	2016
Question	is	How	
• We	will	use	a	greedy	approach	
• Note	that	decision	tree	is	also	a	greedy	algorithm
• Pick	a	splitting	feature	that	maximizes	{information	gain,	purity	score,	etc.}
• Split	the	dataset	into	parts	based	on	the	value	of	the	splitting	feature
• Repeat	from	the	beginning	for	each	dataset
• We	will	grow	a	decision	chain	as	follows
• Pick	a	splitting	feature	that	carves	out	the	most	amount	of	majority	samples
• Split	the	dataset	into	parts	based	on	the	value	of	the	splitting	feature
• Repeat	from	the	beginning	on	only	one	partition	that	has	more	positive	class	
examples
6ICML	WHI	2016
More	Details	on	How
• Selecting	the	best	splitting	feature
• We	will	use	Alpha-Divergence
• Alpha-Divergence	is	the	same	as	KL-Divergence	when	Alpha=1
• Alpha-Divergence	is	the	same	as	Hellingerdistance	when	Alpha=0.5
• Alpha-Divergence	can	be	a	lot	of	different	things	based	on	the	value	of	Alpha
• We	will	change	the	value	of	Alpha	adaptively	(with	a	simple	strategy)	
to	achieve	our	goal
• More	details	are	in	the	paper
7ICML	WHI	2016
Effect	of	Different	Alphas	
• High	Alpha	
• Pure	partitions
• Low	Alpha
• Balanced	partitions
8
α = 1
α = 16
α = 48
α = 64
0
25
50
75
50 100 150
nbp.systolic
count
Shock F T
ICML	WHI	2016
Experiments:	Septic	Shock
• Alpha-Carving	Decision	
Chain	(ACDC)	shows	
comparable	performance	
with	other	decision	tree	
algorithms
• ATree(a=1):	C4.5
• ATree(a=2):	CART
• ATree(a=x):	other	alpha-
trees
9
●
●
●
●
●
0.5
0.6
0.7
0.8
ATree(a=1)
ATree(a=2)
ATree(a=4)
ATree(a=16)
ATree(a=64)
ATree(a=128)
ACDC
Model
AUC
ICML	WHI	2016
Experiments:	Septic	Shock
• Since	ACDC	is	a	decision	chain,	
we	can	make	this	cool	
visualization
• Put	decision	rules	and	
performance	metrics	in	a	single	
chart
• Risk	is	proportional	to	the	
number	of	rules	applied
10
●
●
●
●
●
L1: nbp.systolic<=132
L2: nbp.systolic<=98.4
L3: min.nbp.systolic<=90.4
L4: nbp.diastolic<=46
0
1
2
3
0.00 0.25 0.50 0.75 1.00
Coverage
Lift
ICML	WHI	2016
Experiments:	Cardiac	Arrest
• Another	example:	Asystole
• Again,	comparable	to	other	
decision	trees
11
●
●
●
●
●
●
●
0.5
0.6
0.7
0.8
ATree(a=1)
ATree(a=2)
ATree(a=4)
ATree(a=16)
ATree(a=64)
ATree(a=128)
ACDC
Model
AUC
ICML	WHI	2016
Experiments:	Cardiac	Arrest
12
●
●
●
●
●
●
●
●
L1: min.nbp.diastolic<=48.767L2: min.nbp.systolic<=104
L3: min.spo2<=90
L4: spo2<=93.6
L5: min.spo2<=78
L6: avg.pp>57.495
L7: hr<=90.9
0.0
2.5
5.0
7.5
10.0
0.00 0.25 0.50 0.75 1.00
Coverage
Lift
●
●
●
●
●
●
●
●
●
L1: min.nbp.diastolic<=48.
L2: min.nbp.systolic<=104
L3: min.spo2<=90
L4: spo2<=93.6
L5: min.spo2<=78
L6: avg.pp>57.495
L7: hr<=90.9
0.00
0.25
0.50
0.75
1.00
0.00 0.25 0.50 0.75 1.00
FPR
TPR
ICML	WHI	2016
Experiments:	Cardiac	Arrest
• You	also	can	make	a	risk	
pyramid
13
min.diastolic < 48 mmHg
min.systolic < 104 mmHg
min.spo2 < 90 %
spo2 < 93 %
Baseline Risk
1.3 times higher
1.5 times higher
3.7 x
5.8 x
Asystole !
Risk Stratification !
Decision Chain
Higher risk
ICML	WHI	2016
Contacts
• Yubin	Park
• yubin	[at]	accordionhealth[dot]	com
• Joyce	Ho
• joyce [dot]	c	[dot]	ho	[at]	emory [dot]	edu
• Joydeep Ghosh
• jghosh [at]	utexas [dot]	edu
14ICML	WHI	2016

More Related Content

Viewers also liked

Healthcare Data Analytics with Extreme Tree Models
Healthcare Data Analytics with Extreme Tree ModelsHealthcare Data Analytics with Extreme Tree Models
Healthcare Data Analytics with Extreme Tree Models
Yubin Park
 
World Business Chicago Annual Report 2010
World Business Chicago Annual Report 2010World Business Chicago Annual Report 2010
World Business Chicago Annual Report 2010
World Business Chicago
 
China coal industry development trend and investment strategic decision repor...
China coal industry development trend and investment strategic decision repor...China coal industry development trend and investment strategic decision repor...
China coal industry development trend and investment strategic decision repor...
Qianzhan Intelligence
 
EBEIT Newsletter
EBEIT NewsletterEBEIT Newsletter
EBEIT Newsletter
Sesethu Gqomo
 
Cs in actionn
Cs in actionnCs in actionn
Cs in actionn
Otniel Wijaya
 
China modern agriculture business model and industrial chain investment strat...
China modern agriculture business model and industrial chain investment strat...China modern agriculture business model and industrial chain investment strat...
China modern agriculture business model and industrial chain investment strat...
Qianzhan Intelligence
 
"A Single Man": Choosing Life in a Nietzschean Context
"A Single Man": Choosing Life in a Nietzschean Context"A Single Man": Choosing Life in a Nietzschean Context
"A Single Man": Choosing Life in a Nietzschean Context
Yoav Francis
 
China touch screen industry market demand forecast and investment strategy re...
China touch screen industry market demand forecast and investment strategy re...China touch screen industry market demand forecast and investment strategy re...
China touch screen industry market demand forecast and investment strategy re...
Qianzhan Intelligence
 
ETA_BIO_2015
ETA_BIO_2015ETA_BIO_2015
China pharmaceutical excipients industry indepth research and investment stra...
China pharmaceutical excipients industry indepth research and investment stra...China pharmaceutical excipients industry indepth research and investment stra...
China pharmaceutical excipients industry indepth research and investment stra...
Qianzhan Intelligence
 
The Joseph K. Heyman Scholarship for Economics Students
The Joseph K. Heyman Scholarship for Economics StudentsThe Joseph K. Heyman Scholarship for Economics Students
The Joseph K. Heyman Scholarship for Economics Students
Donald L. Koch
 
Kunendo - Crowd Source Translations
Kunendo - Crowd Source TranslationsKunendo - Crowd Source Translations
Kunendo - Crowd Source Translations
Amancio Bouza
 
Tarea seminario 9 Cecilia
Tarea seminario 9 CeciliaTarea seminario 9 Cecilia
Tarea seminario 9 Cecilia
Cecilia Domínguez Orden
 
Підручник
ПідручникПідручник
Підручник
KPG_KPG
 
China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...
Qianzhan Intelligence
 
organization of living things
organization of living thingsorganization of living things
organization of living things
Duda POp
 
Java programming learning assistant system (jplas)
Java programming learning assistant system (jplas)Java programming learning assistant system (jplas)
Java programming learning assistant system (jplas)
M Idris Setiawan
 
China automated warehouse industry investment demand and development prospect...
China automated warehouse industry investment demand and development prospect...China automated warehouse industry investment demand and development prospect...
China automated warehouse industry investment demand and development prospect...
Qianzhan Intelligence
 
Ephata 611
Ephata 611Ephata 611
Ephata 611
Vu Mai JMV
 
China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...
Qianzhan Intelligence
 

Viewers also liked (20)

Healthcare Data Analytics with Extreme Tree Models
Healthcare Data Analytics with Extreme Tree ModelsHealthcare Data Analytics with Extreme Tree Models
Healthcare Data Analytics with Extreme Tree Models
 
World Business Chicago Annual Report 2010
World Business Chicago Annual Report 2010World Business Chicago Annual Report 2010
World Business Chicago Annual Report 2010
 
China coal industry development trend and investment strategic decision repor...
China coal industry development trend and investment strategic decision repor...China coal industry development trend and investment strategic decision repor...
China coal industry development trend and investment strategic decision repor...
 
EBEIT Newsletter
EBEIT NewsletterEBEIT Newsletter
EBEIT Newsletter
 
Cs in actionn
Cs in actionnCs in actionn
Cs in actionn
 
China modern agriculture business model and industrial chain investment strat...
China modern agriculture business model and industrial chain investment strat...China modern agriculture business model and industrial chain investment strat...
China modern agriculture business model and industrial chain investment strat...
 
"A Single Man": Choosing Life in a Nietzschean Context
"A Single Man": Choosing Life in a Nietzschean Context"A Single Man": Choosing Life in a Nietzschean Context
"A Single Man": Choosing Life in a Nietzschean Context
 
China touch screen industry market demand forecast and investment strategy re...
China touch screen industry market demand forecast and investment strategy re...China touch screen industry market demand forecast and investment strategy re...
China touch screen industry market demand forecast and investment strategy re...
 
ETA_BIO_2015
ETA_BIO_2015ETA_BIO_2015
ETA_BIO_2015
 
China pharmaceutical excipients industry indepth research and investment stra...
China pharmaceutical excipients industry indepth research and investment stra...China pharmaceutical excipients industry indepth research and investment stra...
China pharmaceutical excipients industry indepth research and investment stra...
 
The Joseph K. Heyman Scholarship for Economics Students
The Joseph K. Heyman Scholarship for Economics StudentsThe Joseph K. Heyman Scholarship for Economics Students
The Joseph K. Heyman Scholarship for Economics Students
 
Kunendo - Crowd Source Translations
Kunendo - Crowd Source TranslationsKunendo - Crowd Source Translations
Kunendo - Crowd Source Translations
 
Tarea seminario 9 Cecilia
Tarea seminario 9 CeciliaTarea seminario 9 Cecilia
Tarea seminario 9 Cecilia
 
Підручник
ПідручникПідручник
Підручник
 
China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...
 
organization of living things
organization of living thingsorganization of living things
organization of living things
 
Java programming learning assistant system (jplas)
Java programming learning assistant system (jplas)Java programming learning assistant system (jplas)
Java programming learning assistant system (jplas)
 
China automated warehouse industry investment demand and development prospect...
China automated warehouse industry investment demand and development prospect...China automated warehouse industry investment demand and development prospect...
China automated warehouse industry investment demand and development prospect...
 
Ephata 611
Ephata 611Ephata 611
Ephata 611
 
China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...China retailing industry market forecast and investment strategy planning rep...
China retailing industry market forecast and investment strategy planning rep...
 

Recently uploaded

Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
Low power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniquesLow power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniques
nooriasukmaningtyas
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
ClaraZara1
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
gestioneergodomus
 
sieving analysis and results interpretation
sieving analysis and results interpretationsieving analysis and results interpretation
sieving analysis and results interpretation
ssuser36d3051
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Mukeshwaran Balu
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
IJNSA Journal
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
awadeshbabu
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
Madhumitha Jayaram
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
Ratnakar Mikkili
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 

Recently uploaded (20)

Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
Low power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniquesLow power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniques
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
 
sieving analysis and results interpretation
sieving analysis and results interpretationsieving analysis and results interpretation
sieving analysis and results interpretation
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 

ACDC: Alpha-Carving Decision Chain for Risk Stratification