tensorflow - What is the end result of this machine learning tutorial? -


i've been trying learn tensorflow , machine learning , article 1 of first tutorials i've stumbled onto: https://medium.com/towards-data-science/tensorflow-for-absolute-beginners-28c1544fb0d6. stepped through code , thought understood vast majority of got final output set of 3 numbers, weights. how these weights supposed used? is, how put result use in real world scenario?

weights trying optimize.

the goal find set of weights, when given set of inputs ouput right answer.

in case, have 1 (true) , -1 (false) inputs , bias one. goal learn , function. function should return 1 (true) when both inputs 1 (true), -1 (false) otherwise.

when given new input [1, -1, 1] (bias 1 in case), function multiply these inputs weights computed earlier , sum result. if result of greater 0 output 1, if not, ouput -1


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -