Showing
2 changed files
with
1 additions
and
1 deletions
... | @@ -88,7 +88,7 @@ if __name__ == '__main__': | ... | @@ -88,7 +88,7 @@ if __name__ == '__main__': |
88 | plt.ylabel("score") | 88 | plt.ylabel("score") |
89 | plt.rcParams.update() | 89 | plt.rcParams.update() |
90 | plt.grid() | 90 | plt.grid() |
91 | - plt.plot(scoresTable['precision'],'o--', label='precision', linewidth=1, markersize=8) | 91 | + plt.plot(scoresTable['precision'],'ro--', label='precision', linewidth=1, markersize=8) |
92 | plt.plot(scoresTable['f1-score'], 'o--', label='F1', linewidth=1, markersize=8) | 92 | plt.plot(scoresTable['f1-score'], 'o--', label='F1', linewidth=1, markersize=8) |
93 | plt.plot(scoresTable['recall'], 'o--', label='recall' , linewidth=1, markersize=8) | 93 | plt.plot(scoresTable['recall'], 'o--', label='recall' , linewidth=1, markersize=8) |
94 | plt.plot(scoresTable['CV'], 'o--', label='CV' , linewidth=1, markersize=8) | 94 | plt.plot(scoresTable['CV'], 'o--', label='CV' , linewidth=1, markersize=8) | ... | ... |
-
Please register or login to post a comment