error while running graph=layerGraph(net)
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
graph = layerGraph(net);
Error using layerGraph
lgraph = layerGraph(net);
↑
Invalid argument at position 1. Input must be an array of layers, a SeriesNetwork, a DAGNetwork, or a dlnetwork.
2 commentaires
Matt J
le 14 Mai 2023
So what's the question? Presumably your 'net' input is none of the the legal input types listed in the error message.
Réponses (1)
Matt J
le 14 Mai 2023
Like I said, your 'net' is not one fo the types listed in the error message:
net = googlenet('Weights','none');
net =
LayerGraph with properties:
Layers: [144×1 nnet.cnn.layer.Layer]
Connections: [170×2 table]
InputNames: {'data'}
OutputNames: {'output'}
4 commentaires
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!