Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -89,8 +89,8 @@ if __name__ == '__main__': | ... | @@ -89,8 +89,8 @@ if __name__ == '__main__': |
89 | plt.rcParams.update() | 89 | plt.rcParams.update() |
90 | plt.grid() | 90 | plt.grid() |
91 | plt.plot(scoresTable['precision'],'co--', label='precision', linewidth=1, markersize=6) | 91 | plt.plot(scoresTable['precision'],'co--', label='precision', linewidth=1, markersize=6) |
92 | - plt.plot(scoresTable['f1-score'], 'mo--', label='F1', linewidth=1, markersize=6) | 92 | + plt.plot(scoresTable['f1-score'], 'bo--', label='F1', linewidth=1, markersize=6) |
93 | - plt.plot(scoresTable['recall'], 'go--', label='recall' , linewidth=1, markersize=6) | 93 | + plt.plot(scoresTable['recall'], 'mo--', label='recall' , linewidth=1, markersize=6) |
94 | plt.plot(scoresTable['CV'], 'ro--', label='CV' , linewidth=1, markersize=6) | 94 | plt.plot(scoresTable['CV'], 'ro--', label='CV' , linewidth=1, markersize=6) |
95 | plt.legend(loc='upper left') | 95 | plt.legend(loc='upper left') |
96 | plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) | 96 | plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) | ... | ... |
-
Please register or login to post a comment