Skip to content

Commit 5931144

Browse files
committed
autoformat
1 parent 3d745fe commit 5931144

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

scripts/plotting/create_classification_plots.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,12 @@ def _plot_cover(env: CoverEnv, approach: InteractiveLearningApproach,
111111
# Plot means, entropies, and true means
112112
heatmap(true_means, axes[0], axis_vals, axis_vals, "True Means")
113113
heatmap(means, axes[1], axis_vals, axis_vals, "Means")
114-
heatmap(entropies, axes[2], axis_vals, axis_vals, "Entropies", cmap_max=0.3)
114+
heatmap(entropies,
115+
axes[2],
116+
axis_vals,
117+
axis_vals,
118+
"Entropies",
119+
cmap_max=0.3)
115120
# Plot originally annotated data points
116121
for ax in axes[:2]:
117122
ax.scatter(pos_examples[0],

0 commit comments

Comments
 (0)