custom multiple output regression

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by