Train Network Using Federated Learning example given in Matlab documentation is not working
6 次查看(过去 30 天)
显示 更早的评论
The example "Train Network Using Federated Learning" given in Matlab documentation is not working. I tried to simulate this code as it is given in Matlab documentation but I am getting the following error:
Can somebody help me in solving this issue.
0 个评论
回答(1 个)
Gagan Agarwal
2023-11-17
Hi Debojit
I understand that you are encountering the error while replicating the scenario from MATLAB documentation. The error is occurring because the 'preprocessMiniBatch' function is not defined in your code. In the documentation, the function is defined in a later section as follows:
function [X,Y] = preprocessMiniBatch(XCell,YCell,classes)
% Concatenate.
X = cat(4,XCell{1:end});
% Extract label data from cell and concatenate.
Y = cat(2,YCell{1:end});
% One-hot encode labels.
Y = onehotencode(Y,1,ClassNames=classes);
end
Defining the 'preprocessMiniBatch' function as shown above will resolve the error.
I hope it helps!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!