default value check [fitnet]
4 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Rohit
on 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 Comments
See Also
Categories
Find more on Deep Learning Toolbox 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!