default value check [fitnet]
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
using fitnet, i made a prediction model. so i have to explain how to make it and how to train, so i would like to know the defaults values of the function 'fitnet', for example, i would like to know the initial weight vector or what sigmoid function it uses. how can i know them?? thank you in advance.
0 Commenti
Risposte (1)
Rohit
il 22 Feb 2023
When we use fitnet, it returns a neural network object. We can inspect this object for the weight values before and after training, and all other things related to the model.
net=fitnet(10) % in output we can see weight and bias parameters
net.b{1} %getting initial bias value
0 Commenti
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!