error while running graph=layerGraph(net)
Mostra commenti meno recenti
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 Commenti
Matt J
il 14 Mag 2023
So what's the question? Presumably your 'net' input is none of the the legal input types listed in the error message.
Tan
il 14 Mag 2023
Modificato: Walter Roberson
il 14 Mag 2023
Risposte (1)
Matt J
il 14 Mag 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 Commenti
Tan
il 14 Mag 2023
Walter Roberson
il 14 Mag 2023
By now, R2023a, googlenet() returns DAGNetwork and the R2023a layerGraph() is happy with it.
In R2020b, googlenet() is documented as returning DAGNetwork and the error message implies layerGraph in that version should accept it.
Tan
il 14 Mag 2023
Categorie
Scopri di più su Deep Learning Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!