Getting error while running alexnet
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
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'.
0 Kommentare
Antworten (1)
  Walter Roberson
      
      
 am 14 Mai 2023
        
      Bearbeitet: Walter Roberson
      
      
 am 14 Mai 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 Kommentare
  Walter Roberson
      
      
 am 2 Mai 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."
Siehe auch
Kategorien
				Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


