Feature maps (Activation maps): Difference between revisions

From Computer Science Wiki
 
(3 intermediate revisions by the same user not shown)
Line 16: Line 16:
== How does it work or a deeper look ==
== How does it work or a deeper look ==


* If you are discussing a THING YOU CAN TOUCH, you must explain how it works, and the parts it is made of. Google around for an "exploded technical diagram" of your thing, [http://cdiok.com/wp-content/uploads/2012/01/MRI-Technology.jpg maybe like this example of an MRI]  It is likely you will reference outside links. Please attribute your work.
Convolutional Neural Networks look for "features" such as straight lines, or cats. As such whenever you spot those features-they get reported to the feature map. Each feature map is looking for something else. One feature map could be looking for straight lines, the other for curves. The feature maps also look for their features in different locations.
* If you are discussing a PROCESS OR ABSTRACT CONCEPT (like [[fuzzy logic]]) you must deeply explain how it works.


== Examples ==  
== Examples ==  


Please include some example of how your concept is actually used. Your example must include WHERE it is used, and WHAT IS BENEFIT of it being used.
For instance, In a 32 × 32 image , dragging the 5 × 5 receptive field across the input image data with a stride width of 1 will result in a feature map of 28 × 28 (32–5+1 × 32–5+1) output values or 784 distinct activations per image. Basically this feature map shows how many times a neuron is fired off-or how many different receptive fields will be formed


== Pictures, diagrams ==
== Pictures, diagrams ==

Latest revision as of 21:39, 6 April 2018

Exclamation.png This is student work which has not yet been approved as correct by the instructor

Case study notes[1]

Introduction[edit]

The feature map is the output of one filter applied to the previous layer. A given filter is drawn across the entire previous layer, moved one pixel at a time. Each position results in an activation of the neuron and the output is collected in the feature map. You can see that if the receptive field is moved one pixel from activation to activation, then the field will overlap with the previous activation by (field width - 1) input values.

 <ref> https://www.quora.com/What-is-meant-by-feature-maps-in-convolutional-neural-networks </ref>
 

How does it work or a deeper look[edit]

Convolutional Neural Networks look for "features" such as straight lines, or cats. As such whenever you spot those features-they get reported to the feature map. Each feature map is looking for something else. One feature map could be looking for straight lines, the other for curves. The feature maps also look for their features in different locations.

Examples[edit]

For instance, In a 32 × 32 image , dragging the 5 × 5 receptive field across the input image data with a stride width of 1 will result in a feature map of 28 × 28 (32–5+1 × 32–5+1) output values or 784 distinct activations per image. Basically this feature map shows how many times a neuron is fired off-or how many different receptive fields will be formed

Pictures, diagrams[edit]

Pictures and diagrams go a LONG way to helping someone understand a topic. Especially if your topic is a little abstract or complex. Using a picture or diagram is a two part process:

  1. upload a file
  2. use the file on a wiki page

External links[edit]

  • It would be helpful
  • to include many links
  • to other internet resources
  • to help fellow students
  • Please make sure the content is good
  • and don't link to a google search results, please

References[edit]