VGG19 is a pretrained network that was originally developed to do image classification, but it has gained a lot of popularity for its usefulness in aiding the training of other networks. It is used in style transfers, deep dreaming, image enlargement and numerous other applications. All of these applications extract layers from VGG19 to work. I recently needed to see what was happening in some layers for a style transfer network I am developing. I decided to share the application I built here in hopes it will help others with a similar need.
An example is preloaded with the famous Lenna image. Feel free to load your own image to see what the VGG19 network sees with it.
Loading Application
CONV1_1
 
            CONV1_2
 
            POOL1
 
            CONV2_1
 
            CONV2_2
 
            POOL2
 
            CONV3_1
 
            CONV3_2
 
            CONV3_3
 
            CONV3_4
 
            POOL3
 
            CONV4_1
 
            CONV4_2
 
            CONV4_3
 
            CONV4_4
 
            POOL4
 
            CONV5_1
 
            CONV5_2
 
            CONV5_3
 
            CONV5_4
 
            POOL5
 
            

 
		 
		 
		