Can someone help explain the dot product in machine learning? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help explain the dot product in machine learning?

Sorry if this isn't the right place to ask, but there are literally no Q/A or good tutorials about this. Why does the neural network tutorial use the dot product? What does it do/mean? How do you right it and what is the point? Everytime I search, it comes up with random maths and trigonometry, is there an easy definition?

18th Jul 2020, 1:20 PM
Clueless Coder
Clueless Coder - avatar
10 Answers
+ 1
Ore Clueless Coder Actually I am wrong. The dot product is a scalar that is the sum of product of corresponding numbers in a vector. [a , b , c] • [d , e , f] = ad + be + cf Example: [1,2] • [3,4] = 1.3 + 2.4 = 11 Sorry for the wrong Info.
18th Jul 2020, 1:43 PM
Ćheyat
Ćheyat - avatar
+ 2
The dot product is the scalar product of two vectors. It is defined thus, (aî + bj) • (cî + dj) = (ac) + (bd) It is that simple
18th Jul 2020, 1:27 PM
Ore
Ore - avatar
+ 2
Ćheyat read my answer again. FYI, (ac) + (bd) is same as ac + bd
18th Jul 2020, 1:45 PM
Ore
Ore - avatar
+ 2
OK, I think I get. Just to clarify: (a, b) • (c, d) = ac + bd is correct? Ore Ćheyat
18th Jul 2020, 1:52 PM
Clueless Coder
Clueless Coder - avatar
+ 2
Clueless Coder Yes. That is why it is called scalar product. It transforms two or more vectors to a single scalar value.
18th Jul 2020, 2:05 PM
Ore
Ore - avatar
+ 2
Ćheyat you don't have to beat yourself up about a little mistake. Everyone makes mistakes
18th Jul 2020, 2:11 PM
Ore
Ore - avatar
+ 1
Ore Thanks, to me it isn't simple.
18th Jul 2020, 1:28 PM
Clueless Coder
Clueless Coder - avatar
+ 1
Ore Yes I was wrong. Clueless Coder Yes
18th Jul 2020, 2:03 PM
Ćheyat
Ćheyat - avatar
+ 1
Well that was an awkward mistake. 😆
18th Jul 2020, 2:08 PM
Ćheyat
Ćheyat - avatar
0
Robin Thanks for the clarification, that was my last question about why it was so simple here but absolutely nuts everywhere else
18th Jul 2020, 7:46 PM
Clueless Coder
Clueless Coder - avatar