deepdream error at cuda
    8 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    michael scheinfeild
      
 le 24 Mar 2019
  
    
    
    
    
    Réponse apportée : Maria Duarte Rosa
    
 le 5 Avr 2019
            hi i want to see the deepdream image of googlenetwork pool1-norm1 it works for next layers i receive error 
anyone knows what this error means ?
Error using nnet.internal.cnngpu.convolveForward2D
Unexpected error calling cuDNN: CUDNN_STATUS_BAD_PARAM.
 net_ser = SeriesNetwork(netGoogleTrained.Layers);
  layern='pool1-norm1';%5 ok
  layern='inception_3a-3x3'%16  fail
 ch=[1 2];
 I = deepDreamImage(net_ser,layern,ch);
 figure
for i = 1:2
    subplot(2,1,i)
    imshow(I(:,:,:,i))
end
0 commentaires
Réponse acceptée
  Maria Duarte Rosa
    
 le 5 Avr 2019
        Hi Michael, thanks for your question.
deepDreamImage does not currently support DAG networks, such as GoogLeNet, and there is no way to convert a DAGNetwork into a SeriesNetwork because the latter can only be used for networks with all the layers arranged one after the other (such as AlexNet).
For other visualization techniques I suggest:
Having said this, deepDreamImage is expected to work with DAG networks in future releases.
0 commentaires
Plus de réponses (0)
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!

