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.
我正在使用机器学习 SHAP 值库来解释 ML 模型,当我执行 ForcePlot 时,它不是返回特征的名称,而是返回该特征的相应值。
有我应该更改的参数吗?(当我使用它时,它完美地绘制了功能的名称)
看起来你错过了这个feature_names论点。向它提供相应功能名称的列表,您应该在每个值下方获得相应的功能名称。
feature_names
在拥有数据框的情况下,它会从列中推断出特征名称,但在您的情况下,您似乎有一个数组。