Convert Classification Network into Regression Network

8 views (last 30 days)
I 'm trying to build a regression ResNet 18 model. In previous versions there was lots of output layers. How can i find these layers now ?

Accepted Answer

Cris LaPierre
Cris LaPierre on 12 Dec 2024
Edited: Cris LaPierre on 12 Dec 2024
In R2024a, machine learning models were transitioned to dlnetwork. Rather than assign the output, they now output the prediction scores.
So you would still use Deep Network Desigher to build your network. You would then use trainnet with the targets set to 'mse', and minibatchpredict to obtain the predictions from your network.
You can learn more about how to implement regression in R2024b on the regressionLayer doc page.

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!