Difference between revisions of "Math for Intelligence"

From
Jump to: navigation, search
Line 8: Line 8:
 
* [http://static1.squarespace.com/static/54bf3241e4b0f0d81bf7ff36/t/55e9494fe4b011aed10e48e5/1441352015658/probability_cheatsheet.pdf Probability Cheatsheet]
 
* [http://static1.squarespace.com/static/54bf3241e4b0f0d81bf7ff36/t/55e9494fe4b011aed10e48e5/1441352015658/probability_cheatsheet.pdf Probability Cheatsheet]
 
* [http://neuralnetworksanddeeplearning.com/index.html Neural Networks and Deep Learning - online book | Michael A. Nielsen]  
 
* [http://neuralnetworksanddeeplearning.com/index.html Neural Networks and Deep Learning - online book | Michael A. Nielsen]  
 +
* [https://bloomberg.github.io/foml/#lectures Bloomberg Lectures]
 +
  
 
== Getting Started ==
 
== Getting Started ==
 
<youtube>V7xvqfIEDXk</youtube>
 
<youtube>V7xvqfIEDXk</youtube>
 
<youtube>PXwStduNw14</youtube>
 
<youtube>PXwStduNw14</youtube>
 +
 +
* [http://ocw.mit.edu/courses/mathematics/18-06sc-linear-algebra-fall-2011/ Linear Algebra]
 +
* [http://www.khanacademy.org/math/statistics-probability Stats and Probability]
 +
* [http://www.khanacademy.org/math/differential-calculus Differential Calculus]
 +
* [http://www.khanacademy.org/math/multivariable-calculus Multivariable Calculus]
  
 
== 3blue1brown ==
 
== 3blue1brown ==

Revision as of 04:40, 13 December 2018

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

Depection-of-Matrix-Multiplication.png cross-product-grid.png


Siraj Raval

Josh Starmer - StatQuest

Gilbert Strang (MIT) - Linear Algebra

Quantum Algorithm