trying to compare neural network with no hidden layers with logistic regression
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mathematically neural network with no hidden layers should be same as logistic regression. On a simple data X class labels Y I am calling patternnet[] and fitglm. The training data provided to train both models is same. When using both models on same test data different accuracy results are obtained. Unable to understand why even the training accuracy of both models is different.
1 comentario
KAE
el 4 de Oct. de 2018
Can you provide a simple code example from one of the built in datasets in Matlab?
Respuestas (1)
Greg Heath
el 6 de Oct. de 2018
No hidden nodes default is the same as
LINEAR REGRESSION
NOT
LOGISTIC REGRESSION
For logistic regression, you have to replace the default linear output layer with a logistic layer.
Hope this helps.
Thank you for formally accepting my answer
Greg
0 comentarios
Ver también
Categorías
Más información sobre Linear Regression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!