custom multiple output regression

8 ビュー (過去 30 日間)
jaehong kim
jaehong kim 2021 年 2 月 10 日
コメント済み: jaehong kim 2021 年 2 月 10 日
Hi
i want a way to solve 'custom multiple output regression'
i just want to see a simple example code. I can't find examples because my googling skills aren't good.
I hope that someone who is very generous can leave even a simple example code.
'custom multiple output regression'
layer structure etc...
Thank you for reading my quesion!

採用された回答

Iuliu Ardelean
Iuliu Ardelean 2021 年 2 月 10 日
編集済み: Iuliu Ardelean 2021 年 2 月 10 日
layers1 = [
imageInputLayer([21 21 1],"Name","imageinput")
convolution2dLayer([3 3],32,"Name","conv_1","Padding","same")
batchNormalizationLayer("Name","batchnorm_1")
leakyReluLayer(0.01,"Name","leakyrelu_1")
convolution2dLayer([3 3],32,"Name","conv_2","Padding","same")
batchNormalizationLayer("Name","batchnorm_2")
leakyReluLayer(0.01,"Name","leakyrelu_2")
convolution2dLayer([3 3],32,"Name","conv_3","Padding","same")
batchNormalizationLayer("Name","batchnorm_3")
leakyReluLayer(0.01,"Name","leakyrelu_3")
fullyConnectedLayer(8,"Name","fc") % <- 8 outputs
regressionLayer("Name","regressionoutput")];
  1 件のコメント
jaehong kim
jaehong kim 2021 年 2 月 10 日
Thank you for your answer.
However, I want a neural network layer that receives 8 features and outputs 8(or 1) output.
In other words, i want something about DNN. It seems that your answer is CNN.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by