SlideShare uma empresa Scribd logo
1 de 14
Baixar para ler offline
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

Mais conteúdo relacionado

Destaque

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 ModelsYubin Park
 
World Business Chicago Annual Report 2010
World Business Chicago Annual Report 2010World Business Chicago Annual Report 2010
World Business Chicago Annual Report 2010World 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
 
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 ContextYoav 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
 
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 StudentsDonald L. Koch
 
Kunendo - Crowd Source Translations
Kunendo - Crowd Source TranslationsKunendo - Crowd Source Translations
Kunendo - Crowd Source TranslationsAmancio Bouza
 
Підручник
ПідручникПідручник
Підручник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 thingsDuda 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
 
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
 

Destaque (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...
 

Último

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 

Último (20)

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 

ACDC: Alpha-Carving Decision Chain for Risk Stratification