Dot Product

From
Revision as of 11:06, 22 June 2019 by BPeat (talk | contribs) (Created page with "{{#seo: |title=PRIMO.ai |titlemode=append |keywords=artificial, intelligence, machine, learning, models, algorithms, data, singularity, moonshot, Tensorflow, Google, Nvidia, M...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

YouTube search... ...Google search

Getting Started

3blue1brown

Explained


Dot Product

Dot Product =

  • Algebraically, the dot product is the sum of the products of the corresponding entries of the two sequences of numbers.
  • Geometrically, it is the product of the Euclidean magnitudes of the two vectors and the cosine of the angle between them.

convolution_schematic.gif

Take a moment to understand how the computation above is being done. We slide the orange matrix over our original image (green) by 1 pixel (also called ‘stride’) and for every position, we compute element wise multiplication (between the two matrices) and add the multiplication outputs to get the final integer which forms a single element of the output matrix (pink). Note that the 3×3 matrix “sees” only a part of the input image in each stride. In CNN terminology, the 3×3 matrix is called a ‘filter‘ or ‘kernel’ or ‘feature detector’ and the matrix formed by sliding the filter over the image and computing the dot product is called the ‘Convolved Feature’ or ‘Activation Map’ or the ‘Feature Map‘. It is important to note that filters acts as feature detectors from the original input image. | ujjwalkarn

313px-Matrix_multiplication_diagram_2.svg.png cross-product-grid.png

Siraj Raval

Josh Starmer - StatQuest

Gilbert Strang (MIT) - Linear Algebra

Quantum Algorithm

Statistics