Problem with pre trained Resnet 50

Hi, i was trying to use pretrained resnet50 to train my own dataset. But i got the following error "The output of layer 12 is incompatible with the input expected by layer 13" So far i know to use a pretrained network, only last three layers need to change. i have change those but still getting the same error.
Can anyone help me on that?

3 Commenti

I also met this problem, do you know how to solve it now?
I have the same problem ,, did you manage to find a solution ???
SAQIB SHEIKH
SAQIB SHEIKH il 2 Set 2019
Modificato: SAQIB SHEIKH il 2 Set 2019
Every Pratined Model accpect fixed size of all images thats's why problem occur you should be read about the Resnet50 than apply on your data.
image input size of 224-by-224. for This Model

Accedi per commentare.

Risposte (2)

Chuanzhen Hu
Chuanzhen Hu il 30 Dic 2017

1 voto

https://www.mathworks.com/help/nnet/ref/resnet50.html check this web, it says, 'you can use classify to classify new images using the ResNet-50 model. To retrain the network on a new classification task, follow the steps of Transfer Learning Using GoogLeNet', ResNet-50 is a DAG net, it's different with series net.

1 Commento

FYI: https://au.mathworks.com/help/nnet/examples/transfer-learning-using-googlenet.html

Accedi per commentare.

Divas Bahguna
Divas Bahguna il 17 Mag 2019

0 voti

This error normally occurs when you try to re-build ResNet50 as a sequential layered network after replacing classification layers with your custom layers. As highlighed by Chuanzhen Hu, ResNet50 is a DAG in Matlab, therefore requiring the reconstructed network to be a layer graph. You usually have to consider connectivity relationships between layers and have to re-construct the network by factorign these relationships in layer graph.
New MATLAB versions come with library APIs to take care of these reconstuctions. Eg.,
However, if you are using older versions of MATLAB you'll have to write these implementations yourselves. Hope this solves the issue.

Categorie

Scopri di più su Deep Learning Toolbox in Centro assistenza e File Exchange

Prodotti

Richiesto:

il 9 Nov 2017

Modificato:

il 2 Set 2019

Community Treasure Hunt

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

Start Hunting!

Translated by