We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dff12d commit a631e0bCopy full SHA for a631e0b
src/trustyai/visualizations/lime.py
@@ -30,9 +30,9 @@ def _matplotlib_plot(
30
for feature_importance in (
31
explanations.saliency_map().get(output_name).getPerFeatureImportance()
32
):
33
- dictionary[feature_importance.getFeature().name] = (
34
- feature_importance.getScore()
35
- )
+ dictionary[
+ feature_importance.getFeature().name
+ ] = feature_importance.getScore()
36
37
colours = [
38
(
0 commit comments