default value check [fitnet]
조회 수: 2 (최근 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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!