i have a problem with modelGradients
Mostrar comentarios más antiguos
Hello guys, i'm trying to run the exemple from : https://www.mathworks.com/matlabcentral/fileexchange/75305-yolov3-yolov4-matlab
When i run thus section :
for numEpoch = 1:nEpochs
reset(preprocessedTrainingData);% Reset datastore.
iteration = 0;
while hasdata(preprocessedTrainingData)
t_start = tic;
% Custom training loop.
% Read batch of data and create batch of images and
% ground truths.
outDataTable = read(preprocessedTrainingData);
XTrain = outDataTable{1,1}{1};
YTrain = outDataTable{1,2}{1};
if isempty(YTrain)
continue;
end
% Convert mini-batch of data to dlarray.
XTrain = dlarray(single(XTrain),'SSCB');
% Evaluate the model gradients and loss using dlfeval and the
% modelGradients function.
[gradients,boxLoss,objLoss,clsLoss,totalLoss,state] = dlfeval(@modelGradients, model, XTrain, YTrain,yoloLayerNumber);
I get this error :
'modelGradients' is used in Generate Synthetic Signals Using Conditional Generative Adversarial Network.
Error in deep.internal.dlfeval (line 18)
[varargout{1:nout}] = fun(x{:});
Error in dlfeval (line 41)
[varargout{1:nout}] = deep.internal.dlfeval(fun,varargin{:});
Error in nouveux (line 94)
[gradients,boxLoss,objLoss,clsLoss,totalLoss,state] = dlfeval(@modelGradients, model, XTrain,
YTrain,yoloLayerNumber);
Respuesta aceptada
Más respuestas (1)
Mohamed Marei
el 26 de Jul. de 2021
Editada: Mohamed Marei
el 26 de Jul. de 2021
Because MATLAB sees both of these functions which share the same name on the path, it doesn't know which one to use for each example. Therefore, it may be better practice to copy the internals of this function into a different function (more appropriate for your example), i.e.
function [gradients, boxLoss, objLoss, clsLoss, totalLoss, state] = ...
yoloModelGradients(network, Xtrain, Ytrain, yoloLayerNumber)
% loss, gradients, and states definitions go here.
end
After that, replace the call to the old modelGradients function in your call to dlfeval:
% Evaluate the model gradients and loss using dlfeval and the
% yoloModelGradients function.
[gradients,boxLoss,objLoss,clsLoss,totalLoss,state] = dlfeval(@yoloModelGradients, model, XTrain, YTrain,yoloLayerNumber);
Hope you've managed to get it fixed since then!
Categorías
Más información sobre Get Started with Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!