フィルターのクリア

How to get the value of each stage in a neural network?

2 ビュー (過去 30 日間)
Nilna Almumtazah
Nilna Almumtazah 2022 年 12 月 20 日
コメント済み: Nilna Almumtazah 2022 年 12 月 23 日
I'm trying to classify using the backpropagation neural network method. My code is successful but I need values from each process/stage such as values from z_inj, z_j, y_ink, y_k, etc. How to get this value? This is my code
net = newff(minmax(feature_tr),[100 1],{'logsig', 'purelin'},'traingdx');
[net_output,tr,Y,E] = train(net,feature_tr,target_tr);
output_ts = round(sim(net_output,feature_ts));
I would be very grateful if anyone would help me.
  4 件のコメント
prasanth s
prasanth s 2022 年 12 月 22 日
編集済み: prasanth s 2022 年 12 月 22 日
weights,bias and many other parameters are present in 'net_output' variable. access these parameters using dot notation. e.g net_output.weights.
im not sure about 'z_inj' values.
Nilna Almumtazah
Nilna Almumtazah 2022 年 12 月 23 日
OK, thanks for your answer

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by