the process is stuck in this form and not able to proceed further. i have waited about an hour but still nothing happened.
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Samir khan
 el 13 de Jul. de 2018
  
    
    
    
    
    Respondida: Samir khan
 el 19 de Jul. de 2018
            Training on single CPU.
Initializing image normalization.
|=========================================================================================|
|     Epoch    |   Iteration  | Time Elapsed |  Mini-batch  |  Mini-batch  | Base Learning|
|              |              |  (seconds)   |     Loss     |   Accuracy   |     Rate     |
|=========================================================================================|
%%The code i am using is this.
clc;
clear;
close all;
net=alexnet;
layers=net.Layers;
imds=imageDatastore('Flowers',...
        'IncludeSubfolders',true,...
        'LabelSource','foldername');
[test, train]=splitEachLabel(imds,.7);
numclass=numel(categories(imds.Labels));
layers(end)=classificationLayer;
layers(end-2)=fullyConnectedLayer(12);
opt=trainingOptions('sgdm','InitialLearnRate',0.001);
[newnet, info]=trainNetwork(train,layers,opt);
plot(info.TrainingLoss)
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
				Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
