SlideShare a Scribd company logo
1 of 21
Download to read offline
Five	Insights	from		
GoogLeNet		
You	Could	Use	In	Your	Own	Deep	Learning		Nets	
Auro	Tripathy	
3b 4a 4b 4c 4d 4e 5a3a 5b
www.shaBerline.com	 1
Year	1989	Kicked-Off	ConvoluKon	Neural	Nets	
Ten-Digit	Classifier	using	a	Modest	Neural	Network	with	Three	Hidden	Layers	
Backpropaga)on	Applied	to	Handwri4en	Zip	Code	
Recogni)on.	LeCun,	et.	al.	
hBp://yann.lecun.com/exdb/publis/pdf/lecun-89e.pdf	
Hidden		
Units	
Connec-ons	 Params	
Out	–	
H3	
(FC)	
10	
Visible	
10	x	(30W	
+1B	)=	
310	
10	x	(30W	
+1B	)=	
310	
H3	–	
H2	
(FC)	
30	 30	*	(192	
Weights	+	1	
Bias)	=	5790	
30	*		
(192	W	+	1	B)	=		
5790	
H2	–	
H1	
(Conv)	
12	X	4	x	
4	=	192	
192	x	(5	x	5	x	8	
+	1)=	
38592	
5	x	5	x	8	x	12	+	
192	Biases	=	
2592	
H1	–	
Input	
(Conv)	
12	x	8	x	
8	=	768	
768	x	(5	x	5	x	1	
+	1)	=	19968	
5	x	5	x	1	x	12	+	
768	Biases	=	
1068	
Totals	 16	x	16	
In	+	990	
Hidden	+	
10	Out	
64660	
ConnecKons	
9760	Params	
Each	of	the	units	in	H2	combines	local	
informaKon	coming	from	8	of	the	12	
different	feature	maps	in	H1.	www.shaBerline.com	 2
Year	2012	Marked	The	InflecKon	Point		
Reintroducing	CNNs	Led	to	Big	Drop	in	Error	for	Image	ClassificaKon.	
	Since	Then,	 	Networks	ConKnued	to	Reduce	
28.2	
25.8	
16.4	
11.7	
7.3	
6.7	
3.57	
0	
5	
10	
15	
20	
25	
30	
ILSVRC'10	 ILSVRC'11	 ILSVRC'12	
(Alexnet)	
ILSVRC'13	 ILSVRC'14	 ILSVRC'14	
(GoogLeNet)	
ILSVRC'15	
(ResNet)	
0	
20	
40	
60	
80	
100	
120	
140	
160	
Error	%	
Layers	
www.shaBerline.com	 3	
Top-5
The	Trend	has	been	to	Increase	the	
number	of	Layers	(&	Layer	Size)	
•  The	typical	‘design	paBern’	for	ConvoluKonal	Neural	Nets:	
–  Stacked	convoluKonal	layers,		
•  linear	filter	followed	by	a	non-linear	acKvaKon	
–  Followed	by	contrast	normalizaKon	and	max	pooling,		
–  PenulKmate	layers	(one	or	more)	are	fully	connected	layers.	
–  UlKmate	layer	is	a	loss	layer,	possibly	more	than	one,	in	a	weighted	
mix	
•  Use	of	dropouts	to	address	the	problem	of	over-fipng	due	to	
many	layers		
•  In	addiKon	to	classificaKon,	architecture	good	for	localizaKon	
and	object	detecKon		
–  despite	concerns	that	max-pooling	dilutes	spaKal	informaKon	
www.shaBerline.com	 4
The	Challenge	of	Deep	Networks	
1.  Adding	layers	increases	the	number	of	
parameters	and	makes	the	network	prone	to	
over-fipng	
–  Exacerbated	by	paucity	of	data	
–  More	data	means	more	expense	in	their	annotaKon	
2.  More	computaKon	
–  Linear	increase	in	filters	results	in	quadraKc	increase	
in	compute	
–  If	weights	are	close	to	zero,	we’ve	wasted		compute	
resources	
www.shaBerline.com	 5
Year	2014,	GoogLeNet	Took	Aim	at	
Efficiency	and	PracKcality	
	Resultant	benefits	of	the	new	architecture:	
•  12	Kmes	lesser	parameters	than	AlexNet		
– Significantly	more	accurate	than	AlexNet	
– Lower	memory-use	and	lower	power-use	acutely	
important	for	mobile	devices.	
•  	Stays	within	the	targeted	1.5	Billion	mulKply-
add	budget	
– ComputaKonal	cost	“less	than	2X	compared	to	
AlexNet”	
hBp://www.youtube.com/watch?v=ySrj_G5gHWI&t=12m42s	
www.shaBerline.com	 6
Introducing	the	IncepKon	Module	
www.shaBerline.com	 7	
1x1
5x5
3x3
1x1
3x3 Max
Pooling
Previous
Layer
Concatenate
IntuiKon	behind	the	IncepKon	Module	
	•  Cluster	neurons	according	to	the	correlaKon	staKsKcs	in	the	dataset	
–  An	opKmal	layered	network	topology	can	be	constructed	by	analyzing	the	
correlaKon	staKsKcs	of	the	preceding	layer	acKvaKons	and		and	clustering	
neurons	with	highly	correlated	outputs.		
•  We	already	know	that,	in	the	lower	layers,	there	exists	high	
correlaKons	in	image	patches	that	are	local	and	near-local.	
–  These	can	be	covered	by	1x1	convoluKons	
–  AddiKonally,	a	smaller	number	of	spaKally	spread-out	clusters	can	be	covered	
by	convoluKon	over	larger	patches;	i.e.,	3x3,	and	5x5	
–  And	there	will	be	decreasing	number	of	patches	over	larger	and	larger	
regions.	
•  It	also	suggests	that	the	architecture	is	a	combina)on	of	the	of	all	
the	convoluKons,	the	1x1,	3x3,	5x5,	as	input	to	the	next	stage	
•  Since	max-pooling	has	been	successful,	it	suggests	adding	a	pooling	
layer	in	parallel		
www.shaBerline.com	 8
In	Images,	correlaKon	tends	to	be	local,	exploit	it.	
Heterogeneous	set	of	convoluKons	to	cover	spread-out	clusters	
www.shaBerline.com	 9	
Cover	very	local		
clusters	w/1x1	convoluKons	
Cover	more	spread-out		
clusters	w/3x3	convoluKons	
Cover	even	more	spread-out		
clusters	w/5x5	convoluKons	
5x5 3x3 1x1
5x5
3x31x1
Previous
Layer
Conceiving	the	IncepKon	Module	
www.shaBerline.com	 10	
5x5
3x3
1x1
3x3 Max
Pooling
Concatenate
Previous
Layer
IncepKon	Module	Put	Into	PracKce		
Judicious	Dimension	ReducKon	
www.shaBerline.com	 11	
1x1
5x5
3x3
1x1
3x3 Max
Pooling
Previous
Layer
Concatenate
www.shaBerline.com	 12	
Insights…	
3b 4a 4b 4c 4d 4e 5a3a 5b
GoogLeNet	Insight	#1	
(Summary	from	previous	Slides)	
Leads	to	the	following	architecture	choices:	
•  Choosing	filter	sizes	of	1X1,	3X3,	5X5		
•  Applying	all	three	filters	on	the	same	“patch”	
of	image	(no	need	to	choose)	
•  ConcatenaKng	all	filters	as	a	single	output	
vector	for	the	next	stage.	
•  ConcatenaKng	an	addiKonal	pooling	path	
since	pooling	is	essenKal	to	the		success	of	
CNNs.	
www.shaBerline.com	 13
GoogLeNet	Insights	#2	
Decrease	dimensions	wherever	computaKon	requirements	increase	
via	a	1X1	Dimension	ReducKon	Layer	
•  Use	inexpensive	1X1	convoluKons	to	compute	
reducKons	before	the	expensive	3X3	and	3X5	
convoluKons	
•  1X1	convoluKons	include	a	ReLU	acKvaKon	
making	then	dual-purpose.		
1x1
Previous
Layer
ReLU
www.shaBerline.com	 14
GoogLeNet	Insight	#3	
Stack	IncepKon	Modules	Upon	Each	Other	
•  Occasionally	insert	max-pooling	layers	with	stride	2	to	
decimate	(by	half)	the	resoluKon	of	the	grid.	
•  Stacking	IncepKon	Layers	benefits	the	results	when	
used	at	higher	layers	(not	strictly	necessary)	
–  Lower	layers	are	kept	in	tradiKonal	convoluKons	fashion	
(for	memory	efficiency	reasons)	
•  This	stacking	allows	for	tweaking	each	module	without	
uncontrolled	blowup	in	computaKonal	complexity	at	
later	stages.	
–  For	example,	a	tweak	could	be	increase	width	at	any	stage.		
www.shaBerline.com	 15
GoogLeNet	Components	
Stacking	IncepKon	Modules	
3b 4a 4b 4c 4d 4e 5a3a 5b
Input
Average
Pooling
Traditional
Convolutions
(Conv + MaxPool +
Conv + MaxPool)
Linear
Nine Inception Modules
SoftMax
w/LossMaxPool
Label
www.shaBerline.com	 16
GoogLeNet	Insight	#4	
Counter-Balancing	Back-PropagaKon	Downsides	in	Deep	Networks	
•  A	potenKal	problem	
–  Back-propagaKng	thru	deep	networks	could	result	in	
“vanishing	gradients”	(possibly	mean,	dead	ReLUs).		
•  A	soluKon	
–  Intermediate	layers	do	have	discriminatory	powers	
–  Auxiliary	classifiers	were	appended	to	the	
intermediate	layers	
–  During	training,	the	intermediate	loss	was	added	to	
the	total	loss	with	a	discounted	factor	of	0.3	
www.shaBerline.com	 17
Two	AddiKonal	Loss	Layers		
for	Training	to	Depth	
3b 4a 4b 4c 4d 4e 5a3a 5b
Input
Average
Pooling
Traditional
Convolutions
(Conv + MaxPool +
Conv + MaxPool)
Linear
Nine Inception Modules
SoftMax
w/Loss 2MaxPool
Average
Pooling
1x1
Conv
DropOutFully
Connected
SoftMax
w/Loss 0Linear
Label
SoftMax
w/Loss 1
www.shaBerline.com	 18
GoogLeNet	Insight	#5	
End	with	Global	Average	Pooling	Layer	Instead	of	Fully	Connected	Layer	
•  Fully-Connected	layers	are	prone	to	over-fipng	
–  Hampers	generalizaKon	
•  Average	Pooling	has	no	parameter	to	opKmize,	thus	no	over-fipng.	
•  Averaging	more	naKve	to	the	convoluKonal	structure	
–  Natural	correspondence	between	feature-maps	and	categories	leading	
to	easier	interpretaKon	
•  Average	Pooling	does	not	exclude	the	use	of	Dropouts,	a	proven	
regularizaKon	method	to	avoid	over-fipng.	
3b 4a 4b 4c 4d 4e 5a3a 5b
Global
Average
Pooling
Linear
Layer for
adapting to
other label Sets
SoftMax
w/Loss
Label
www.shaBerline.com	 19
Summarizing	The	Insights	
1.  Exploit	fully	the	fact	that,	in	Images,	correlaKon	tend	
to	be	local	
•  Concatenate	1X1,	3X3,	5x5	convoluKons	along	with	pooling	
2.  Decrease	dimensions	wherever	computaKon	
requirements	increase	via	a	1X1	Dimension	ReducKon	
Layer	
3.  Stack	IncepKon	Modules	Upon	Each	Other	
4.  Counter-Balance	Back-PropagaKon	Downsides	in	
Deep	Network	
•  Uses	intermediate	losses	in	the	final	loss	
5.  End	with	Global	Average	Pooling	Layer	Instead	of	
Fully	Connected	Layer	
www.shaBerline.com	 20
References	
•  Seminal	
– Backpropaga)on	Applied	to	Handwri4en	Zip	Code	
Recogni)on.	LeCun,	et.	al.	
•  Deep	Networks	
– Going	Deeper	with	ConvoluKons	
– Network	In	Network	
www.shaBerline.com	 21

More Related Content

What's hot

Convolutional neural network
Convolutional neural network Convolutional neural network
Convolutional neural network Yan Xu
 
Autoencoders
AutoencodersAutoencoders
AutoencodersCloudxLab
 
Computer Vision: Correlation, Convolution, and Gradient
Computer Vision: Correlation, Convolution, and GradientComputer Vision: Correlation, Convolution, and Gradient
Computer Vision: Correlation, Convolution, and GradientAhmed Gad
 
Convolution Neural Network (CNN)
Convolution Neural Network (CNN)Convolution Neural Network (CNN)
Convolution Neural Network (CNN)Suraj Aavula
 
Convolutional Neural Networks (CNN)
Convolutional Neural Networks (CNN)Convolutional Neural Networks (CNN)
Convolutional Neural Networks (CNN)Gaurav Mittal
 
ResNet basics (Deep Residual Network for Image Recognition)
ResNet basics (Deep Residual Network for Image Recognition)ResNet basics (Deep Residual Network for Image Recognition)
ResNet basics (Deep Residual Network for Image Recognition)Sanjay Saha
 
Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...
Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...
Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...Simplilearn
 
Convolutional Neural Networks
Convolutional Neural NetworksConvolutional Neural Networks
Convolutional Neural NetworksAshray Bhandare
 
Learning Deep Learning
Learning Deep LearningLearning Deep Learning
Learning Deep Learningsimaokasonse
 
Deep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksDeep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksChristian Perone
 
backpropagation in neural networks
backpropagation in neural networksbackpropagation in neural networks
backpropagation in neural networksAkash Goel
 
Convolutional Neural Network
Convolutional Neural NetworkConvolutional Neural Network
Convolutional Neural NetworkVignesh Suresh
 

What's hot (20)

Convolutional neural network
Convolutional neural network Convolutional neural network
Convolutional neural network
 
Autoencoders
AutoencodersAutoencoders
Autoencoders
 
Computer Vision: Correlation, Convolution, and Gradient
Computer Vision: Correlation, Convolution, and GradientComputer Vision: Correlation, Convolution, and Gradient
Computer Vision: Correlation, Convolution, and Gradient
 
Convolution Neural Network (CNN)
Convolution Neural Network (CNN)Convolution Neural Network (CNN)
Convolution Neural Network (CNN)
 
Convolutional Neural Networks (CNN)
Convolutional Neural Networks (CNN)Convolutional Neural Networks (CNN)
Convolutional Neural Networks (CNN)
 
Bagging.pptx
Bagging.pptxBagging.pptx
Bagging.pptx
 
ResNet basics (Deep Residual Network for Image Recognition)
ResNet basics (Deep Residual Network for Image Recognition)ResNet basics (Deep Residual Network for Image Recognition)
ResNet basics (Deep Residual Network for Image Recognition)
 
Activation function
Activation functionActivation function
Activation function
 
Transfer Learning
Transfer LearningTransfer Learning
Transfer Learning
 
LeNet-5
LeNet-5LeNet-5
LeNet-5
 
Lstm
LstmLstm
Lstm
 
CNN Tutorial
CNN TutorialCNN Tutorial
CNN Tutorial
 
Resnet
ResnetResnet
Resnet
 
U-Net (1).pptx
U-Net (1).pptxU-Net (1).pptx
U-Net (1).pptx
 
Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...
Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...
Deep Learning Tutorial | Deep Learning TensorFlow | Deep Learning With Neural...
 
Convolutional Neural Networks
Convolutional Neural NetworksConvolutional Neural Networks
Convolutional Neural Networks
 
Learning Deep Learning
Learning Deep LearningLearning Deep Learning
Learning Deep Learning
 
Deep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksDeep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural Networks
 
backpropagation in neural networks
backpropagation in neural networksbackpropagation in neural networks
backpropagation in neural networks
 
Convolutional Neural Network
Convolutional Neural NetworkConvolutional Neural Network
Convolutional Neural Network
 

Similar to GoogLeNet Insights

Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...
Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...
Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...Koji Yamamoto
 
Overlapping community detection in Large-Scale Networks using BigCLAM model b...
Overlapping community detection in Large-Scale Networks using BigCLAM model b...Overlapping community detection in Large-Scale Networks using BigCLAM model b...
Overlapping community detection in Large-Scale Networks using BigCLAM model b...Thang Nguyen
 
How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?
How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?
How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?Amr ABDELFATTAH
 
Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759
Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759
Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759Vandna Sambyal
 
運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...
運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...
運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...Herman Wu
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Scienceinventy
 
Coding the Continuum
Coding the ContinuumCoding the Continuum
Coding the ContinuumIan Foster
 
Introduction to Applied Machine Learning
Introduction to Applied Machine LearningIntroduction to Applied Machine Learning
Introduction to Applied Machine LearningSheilaJimenezMorejon
 
Tensorflow in practice by Engineer - donghwi cha
Tensorflow in practice by Engineer - donghwi chaTensorflow in practice by Engineer - donghwi cha
Tensorflow in practice by Engineer - donghwi chaDonghwi Cha
 
A Simple Communication System Design Lab #4 with MATLAB Simulink
A Simple Communication System Design Lab #4 with MATLAB SimulinkA Simple Communication System Design Lab #4 with MATLAB Simulink
A Simple Communication System Design Lab #4 with MATLAB SimulinkJaewook. Kang
 
"An adaptive modular approach to the mining of sensor network ...
"An adaptive modular approach to the mining of sensor network ..."An adaptive modular approach to the mining of sensor network ...
"An adaptive modular approach to the mining of sensor network ...butest
 
Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...
Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...
Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...VLSICS Design
 
FPGA-BASED-CNN.pdf
FPGA-BASED-CNN.pdfFPGA-BASED-CNN.pdf
FPGA-BASED-CNN.pdfdajiba
 
Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016
Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016
Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016Keunwoo Choi
 
packet traveling (pre cloud)
packet traveling (pre cloud)packet traveling (pre cloud)
packet traveling (pre cloud)iman darabi
 
06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...
06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...
06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...Zalando adtech lab
 

Similar to GoogLeNet Insights (20)

Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...
Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...
Machine Learning and Stochastic Geometry: Statistical Frameworks Against Unce...
 
Overlapping community detection in Large-Scale Networks using BigCLAM model b...
Overlapping community detection in Large-Scale Networks using BigCLAM model b...Overlapping community detection in Large-Scale Networks using BigCLAM model b...
Overlapping community detection in Large-Scale Networks using BigCLAM model b...
 
How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?
How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?
How do you configure your LTE-U eNodeB to fairly coexist with Wi-Fi?
 
tutorial 3.pptx
tutorial 3.pptxtutorial 3.pptx
tutorial 3.pptx
 
Final_Presentation
Final_PresentationFinal_Presentation
Final_Presentation
 
Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759
Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759
Optimizedfeedforwardnetworkofcnnwithxnorv5 180321130759
 
Optimized feedforward network of cnn with xnor v5
Optimized feedforward network of cnn with xnor v5Optimized feedforward network of cnn with xnor v5
Optimized feedforward network of cnn with xnor v5
 
運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...
運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...
運用CNTK 實作深度學習物件辨識 Deep Learning based Object Detection with Microsoft Cogniti...
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Science
 
Coding the Continuum
Coding the ContinuumCoding the Continuum
Coding the Continuum
 
Introduction to Applied Machine Learning
Introduction to Applied Machine LearningIntroduction to Applied Machine Learning
Introduction to Applied Machine Learning
 
Tensorflow in practice by Engineer - donghwi cha
Tensorflow in practice by Engineer - donghwi chaTensorflow in practice by Engineer - donghwi cha
Tensorflow in practice by Engineer - donghwi cha
 
A Simple Communication System Design Lab #4 with MATLAB Simulink
A Simple Communication System Design Lab #4 with MATLAB SimulinkA Simple Communication System Design Lab #4 with MATLAB Simulink
A Simple Communication System Design Lab #4 with MATLAB Simulink
 
"An adaptive modular approach to the mining of sensor network ...
"An adaptive modular approach to the mining of sensor network ..."An adaptive modular approach to the mining of sensor network ...
"An adaptive modular approach to the mining of sensor network ...
 
Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...
Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...
Concurrent Ternary Galois-based Computation using Nano-apex Multiplexing Nibs...
 
FPGA-BASED-CNN.pdf
FPGA-BASED-CNN.pdfFPGA-BASED-CNN.pdf
FPGA-BASED-CNN.pdf
 
Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016
Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016
Automatic Tagging using Deep Convolutional Neural Networks - ISMIR 2016
 
packet traveling (pre cloud)
packet traveling (pre cloud)packet traveling (pre cloud)
packet traveling (pre cloud)
 
Bayisa Taye.pptx
Bayisa Taye.pptxBayisa Taye.pptx
Bayisa Taye.pptx
 
06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...
06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...
06.09.2017 Computer Science, Machine Learning & Statistiks Meetup - MULTI-GPU...
 

More from Auro Tripathy

Auro tripathy - Localizing with CNNs
Auro tripathy -  Localizing with CNNsAuro tripathy -  Localizing with CNNs
Auro tripathy - Localizing with CNNsAuro Tripathy
 
Back-propagation Primer
Back-propagation PrimerBack-propagation Primer
Back-propagation PrimerAuro Tripathy
 
Of knights-and-drawbridges-nat-behaviour
Of knights-and-drawbridges-nat-behaviourOf knights-and-drawbridges-nat-behaviour
Of knights-and-drawbridges-nat-behaviourAuro Tripathy
 
A Random Forest Approach To Skin Detection With R
A Random Forest Approach To Skin Detection With RA Random Forest Approach To Skin Detection With R
A Random Forest Approach To Skin Detection With RAuro Tripathy
 
Latent Semanctic Analysis Auro Tripathy
Latent Semanctic Analysis Auro TripathyLatent Semanctic Analysis Auro Tripathy
Latent Semanctic Analysis Auro TripathyAuro Tripathy
 

More from Auro Tripathy (6)

Auro tripathy - Localizing with CNNs
Auro tripathy -  Localizing with CNNsAuro tripathy -  Localizing with CNNs
Auro tripathy - Localizing with CNNs
 
Back-propagation Primer
Back-propagation PrimerBack-propagation Primer
Back-propagation Primer
 
Of knights-and-drawbridges-nat-behaviour
Of knights-and-drawbridges-nat-behaviourOf knights-and-drawbridges-nat-behaviour
Of knights-and-drawbridges-nat-behaviour
 
A Random Forest Approach To Skin Detection With R
A Random Forest Approach To Skin Detection With RA Random Forest Approach To Skin Detection With R
A Random Forest Approach To Skin Detection With R
 
Latent Semanctic Analysis Auro Tripathy
Latent Semanctic Analysis Auro TripathyLatent Semanctic Analysis Auro Tripathy
Latent Semanctic Analysis Auro Tripathy
 
HTTP Live Streaming
HTTP Live StreamingHTTP Live Streaming
HTTP Live Streaming
 

Recently uploaded

(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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
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
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
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
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
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
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
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
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
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
 
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
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 

Recently uploaded (20)

(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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
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
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
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
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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, ...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
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...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
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
 
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
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 

GoogLeNet Insights