Skip to content

Commit 6cf32f8

Browse files
author
Arthur Douillard
committed
[results] Add markers for each task results on graph.
1 parent 4389c32 commit 6cf32f8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

figures/icifar100_10split.png

1.02 KB
Loading

inclearn/results_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ def plot(results, increment, total, title="", path_to_save=None):
139139

140140
unique_score = compute_unique_score(means, skip_first=skip_first)
141141

142-
plt.errorbar(x, means, stds, label=label + " ({})".format(unique_score))
142+
plt.errorbar(x, means, stds, label=label + " ({})".format(unique_score),
143+
marker="o", markersize=3)
143144

144145
plt.legend(loc="upper right")
145146
plt.xlabel("Number of classes")

0 commit comments

Comments
 (0)