Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 matlab 的神经网络进行分类。我想知道如何在训练后的矩阵中存储网络参数,例如:epochs、time、mse等?
非常感谢
调用train时,返回的第二个参数是训练记录,其中包含有关训练的时期、时间和其他信息。例如
[net,tr] = train(net,data,target); tr.epoch tr.time
对于mse,给定测试数据data、目标数据target和神经网络net:
data
target
net
%run inputs through network result = net(data); %get the error error = result - target; %calculate mse mse(error)
您可以将网络参数存储在元胞数组中。请在以下链接中找到更多详细信息:http: //www.mathworks.ch/ch/help/matlab/cell-arrays.html