Problem 58907. Neural Net: Calculate Bias Quad Output Perceptron (Counter, Mux, Subtraction)
This challenge is to calculate the Neural Net Bias Quad Output Perceptron vector, PY, and Pclass, given X, WH, and WP using ReLU on the hidden layer and Softmax on the output layer. Test Cases will be all two input conditions for functions Counter, 2 bit Mux, and Subtraction 3-X_value. With four output classes ReLU performed better than Sigmoid in back propagation in ability to solve from random and prediction deltas between classes.
X wll be a 4x3 matrix creating a Quad output PY 4x4 matrix. PY(:,N) is Expectation of class N 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=Class1, col2=Class2, col3=Class3, col2=Class4.
[PY,Pclass]=Calc_Quad_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
-
Find relatively common elements in matrix rows
2051 Solvers
-
How to find the position of an element in a vector without using the find function
2728 Solvers
-
Back to basics 24 - Symbolic variables
143 Solvers
-
690 Solvers
-
Make a logical diamond using GALLERY function
95 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!