test_means = - grid.cv_results_[ 'mean_test_score' ] n_Cs = len(Cs) plt.plot(np.log10(Cs), test_means) #最佳超参数 best_C = grid.best_params_['C'] plt.axvline(np.log10(best_C), color='r', ls='--') plt.legend() plt.xlabel( 'log(C)' ) plt.ylabel( 'logloss' ) pl
时间: 2023-06-04 13:06:04 浏览: 79
cSharp-and-plt.rar_C# plt_PLT_PLT 解析_c#解析plt_plt文件
5星 · 资源好评率100%
这段代码的作用是将一个包含不同参数组合的网格搜索结果中,每个参数组合对应的测试分数的平均值取反后,绘制在以对数为单位的横坐标轴上的折线图中。参数 Cs 是一个参数列表,表示模型中的参数值。代码中的 n_Cs 表示 Cs 列表的长度。
阅读全文