default value check [fitnet]
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Rohit
2023 年 2 月 22 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!