%% testing if (strcmp(task, 'test')) if(isempty(direct_test)) load(['../SynC_CV_results/SynC_fast_' opt.loss_type '_classCV_' dataset '_split' num2str(opt.ind_split) '_' feature_name '_' norm_method '_' Sim_type '.mat'],... 'acc_val', 'opt'); [loc_lambda, loc_Sim_scale] = find(acc_val == max(acc_val(:))); lambda = opt.lambda(loc_lambda(1)); Sim_scale = opt.Sim_scale(loc_Sim_scale(1)); disp([loc_lambda(1), loc_Sim_scale(1)]) else lambda = direct_test(1); Sim_scale = direct_test(2); end if (exist(['../SynC_results/SynC_fast_' opt.loss_type '_' dataset '_split' num2str(opt.ind_split) '_' feature_name '_' norm_method '_' Sim_type... '_lambda' num2str(lambda) '_Sim_scale' num2str(Sim_scale) '.mat'], 'file') == 2) disp('load existing file!!'); load(['../SynC_results/SynC_fast_' opt.loss_type '_' dataset '_split' num2str(opt.ind_split) '_' feature_name '_' norm_method '_' Sim_type... '_lambda' num2str(lambda) '_Sim_scale' num2str(Sim_scale) '.mat'], 'W'); else disp('train a new model!!'); if (strcmp(opt.loss_type, 'OVO')) W = train_W_OVO([], Xtr, Ytr, lambda); elseif (strcmp(opt.loss_type, 'CS')) W = train_W_CS([], Xtr, Ytr, lambda); elseif (strcmp(opt.loss_type, 'struct')) W = train_W_struct([], Xtr, Ytr, Sig_dist(unique(Ytr), unique(Ytr)), lambda); else disp('Wrong loss type!'); return; end end
时间: 2024-04-14 08:31:25 浏览: 82
equivalent_int_error_condition.rar_If...
这段代码是进行测试阶段的代码。首先判断 `task` 是否为 `'test'`,如果是,进入测试阶段的代码。
如果 `direct_test` 是空的,加载之前保存的验证集准确率矩阵 `acc_val` 和参数配置 `opt`。然后找到准确率最高的参数组合的索引 `loc_lambda` 和 `loc_Sim_scale`,并将对应的参数值赋给 `lambda` 和 `Sim_scale`。最后打印出找到的最优参数组合的索引。
如果 `direct_test` 不为空,直接将 `direct_test` 中的参数值赋给 `lambda` 和 `Sim_scale`。
接下来,检查是否存在之前训练好的模型文件。如果存在,加载该模型文件并赋值给变量 `W`。否则,显示需要训练新模型的提示。
最后,根据不同的损失类型(`opt.loss_type`)使用相应的训练函数(`train_W_OVO()`、`train_W_CS()`、`train_W_struct()`)训练新模型,并将结果赋给变量 `W`。
阅读全文