Getting error while running alexnet

12 visualizaciones (últimos 30 días)
Tan
Tan el 14 de Mayo de 2023
Comentada: Walter Roberson el 2 de Mayo de 2024
net =alexnet('Weights','none');
lys = net.Layers();
lys(end-3:end)
getting error:
Unrecognized method, property, or field 'Layers' for class 'nnet.cnn.layer.Layer'.

Respuestas (1)

Walter Roberson
Walter Roberson el 14 de Mayo de 2023
Editada: Walter Roberson el 14 de Mayo de 2023
When you call alexnet() with 'Weights', 'none' then the result you get back is a Layer array, not a DagNetwork or LayerGraph. The list of layers that you are trying to get is just the same as net itself in this case.
You need the .Layers() if you load in the regular pre-trained alexnet
  11 comentarios
mukthi
mukthi el 2 de Mayo de 2024
Even though showing error as unrecognised function or variable 'alexnet'
Walter Roberson
Walter Roberson el 2 de Mayo de 2024
"This function requires Deep Learning Toolbox™ Model for AlexNet Network support package. If this support package is not installed, the function provides a download link. Alternatively, see Deep Learning Toolbox Model for AlexNet Network."

Iniciar sesión para comentar.

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by