Problem 58902. Neural Net: Calculate Bias Dual Output Perceptron (AND/NAND/OR/NOR/XOR/XNOR)
This challenge is to calculate the Neural Net Bias Dual Output Perceptron vector,PY and Pclass, given X, WH, and WP using Sigmoid on the hidden layer and Softmax on the output layer. Test Cases will be all two input conditions for functions XOR, XNOR, AND, NAND, OR, and NOR.
X wll be a 4x3 matrix creating a Dual output PY 4x2 matrix. PY(:,1) is Expectation of 0 and PY(:,2) is Expectation of 1 for each case. PY values shall all be <0.25 or >.75 The Pclass must match the Logical Function expectation where Pclass is the column of PY with max value per row, col1=Logic0 and col2=Logic1.
[PY,Pclass]=Calc_Dual_Bias_Perceptron(X,WH,WP)
The function template includes the code to create this figure using Matlab Latex
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers4
Suggested Problems
-
2287 Solvers
-
236 Solvers
-
299 Solvers
-
Convert a numerical matrix into a cell array of strings
2069 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
484 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!