2

我正在使用 matlab 的神经网络进行分类。我想知道如何在训练后的矩阵中存储网络参数,例如:epochs、time、mse等?

非常感谢

4

2 回答 2

3

调用train时,返回的第二个参数是训练记录,其中包含有关训练的时期、时间和其他信息。例如

[net,tr] = train(net,data,target);
tr.epoch
tr.time

对于mse,给定测试数据data、目标数据target和神经网络net

%run inputs through network 
result = net(data);
%get the error
error = result - target;
%calculate mse
mse(error)
于 2013-07-28T21:33:46.670 回答
1

您可以将网络参数存储在元胞数组中。请在以下链接中找到更多详细信息:http: //www.mathworks.ch/ch/help/matlab/cell-arrays.html

于 2013-07-28T21:21:50.090 回答