Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Dec 3, 2024
1 parent ccb43e3 commit 671b4d0
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions notebooks/introduction_to_explainable_ai.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -973,9 +973,7 @@
}
],
"source": [
"structure_heatmap_shap(\n",
" explanation\n",
")"
"structure_heatmap_shap(explanation)"
]
},
{
Expand Down Expand Up @@ -1132,7 +1130,9 @@
}
],
"source": [
"structure_heatmap_shap(explanations_dict[\"b1i5k\"], color_limits=(-weight_abs_max, weight_abs_max))"
"structure_heatmap_shap(\n",
" explanations_dict[\"b1i5k\"], color_limits=(-weight_abs_max, weight_abs_max)\n",
")"
]
},
{
Expand Down Expand Up @@ -1181,7 +1181,6 @@
}
],
"source": [
"\n",
"explanations_dict[\"b1i2n\"].molecule"
]
},
Expand All @@ -1204,7 +1203,9 @@
}
],
"source": [
"structure_heatmap_shap(explanations_dict[\"b1i2n\"], color_limits=(-weight_abs_max, weight_abs_max))"
"structure_heatmap_shap(\n",
" explanations_dict[\"b1i2n\"], color_limits=(-weight_abs_max, weight_abs_max)\n",
")"
]
},
{
Expand Down Expand Up @@ -1270,7 +1271,9 @@
}
],
"source": [
"structure_heatmap_shap(explanations_dict[\"b1i5b\"], color_limits=(-weight_abs_max, weight_abs_max))"
"structure_heatmap_shap(\n",
" explanations_dict[\"b1i5b\"], color_limits=(-weight_abs_max, weight_abs_max)\n",
")"
]
},
{
Expand Down

0 comments on commit 671b4d0

Please sign in to comment.