in force raise Exception("In v0.20 force_plot now requires the base value as the first parameter! " \ Exception: In v0.20 force_plot now requires the base value as the first parameter! Try shap.force_plot(explainer.expected_value, shap_values) or for multi-output models try shap.force_plot(explainer.expected_value[0], shap_values[0]).
时间: 2024-03-31 13:35:30 浏览: 606
WiMAX.zip_In the Frame_bcjr_turbo_turbo code_wimax turbo
这段代码的意思是在版本0.20中,`force_plot`函数需要将基准值作为第一个参数传入。如果没有传入基准值,会抛出`Exception`异常。建议使用`shap.force_plot(explainer.expected_value, shap_values)`来调用函数,或者对于多输出模型,可以尝试使用`shap.force_plot(explainer.expected_value[0], shap_values[0])`。
阅读全文