Skip to main content

Posts

Showing posts with the label book

training convolutional neural network with MATLAB: image recognition AI.

 'youve probably heard this quote ,'dont judge a book by its cover' . and how does it relate to the topic , well , this is a matlab script from a video i found on youtube on convolutional neural network with MATLAB but for the newbies what is convolutional neural network , well in layman/simpler terms it just means training a computer to  identify patterns and things , esentially giving the computer a human brain. In even simpler terms,getting a computer to 'judge a book by its cover'. this is the result, now this code trains the computer to recognize a set  of dataset called the mnist dataset,this is a data set consisting of handwritten numbers .     Softmax function       Function y= Softmax(x)   %UNTITLED6 Summary of this function goes here   %    Detailed explanation goes here       Ex = exp(x);   Y =ex/sum(ex);   End     Explanation   This is...