how to compute and plot mean square error for two vectors?
3 views (last 30 days)
Show older comments
DEEPAK Chekuri
on 9 Jan 2021
Commented: DEEPAK Chekuri
on 13 Jan 2021
i have a dataset to classify, using perceptron learning rule . i've calculated the weight matrix but don't know how to plot MSE .
{𝑝1 = [ 1 1 ],𝑡1 = [ 0 0 ]}, {𝑝2 = [ 1 2 ],𝑡2 = [ 0 0 ]}, {𝑝3 = [ 2 −1 ],𝑡3 = [ 0 1 ]}, {𝑝4 = [ 2 0 ],𝑡4 = [ 0 1 ]}, {𝑝5 = [ −1 2 ],𝑡5 = [ 1 0 ]}, {𝑝6 = [ −2 1 ],𝑡6 = [ 1 0 ]}, {𝑝7 = [ −1 −1 ],𝑡7 = [ 1 1 ]}, {𝑝8 = [ −2 −2 ],𝑡8 = [ 1 1 ]}.
This the dataset and w=[-2 0;0 -2],bias =[-1 0]
0 Comments
Accepted Answer
Gaurav Garg
on 13 Jan 2021
Hi Deepak,
You can plot MSE/Loss and accuracy for each iteration of your training/testing.
To do this, you can make a network with 'n' number of layers, train your network on it and store the loss returned per iteration in a list. Finally, you can plot this loss on y-axis and number of iterations on x-axis.
More Answers (0)
See Also
Categories
Find more on Define Shallow Neural Network Architectures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!