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 3c41771 commit fedec63Copy full SHA for fedec63
src/trustyai/visualizations/distance.py
@@ -9,7 +9,7 @@ class DistanceViz:
9
10
def plot(self, explanations):
11
"""Plot the Levenshtein distance matrix"""
12
- cmap = plt.cm.viridis
+ cmap = plt.cm.viridis # pylint: disable=no-member
13
14
_, axes = plt.subplots()
15
cax = axes.imshow(explanations.matrix, cmap=cmap, interpolation="nearest")
0 commit comments