Showing
2 changed files
with
4 additions
and
4 deletions
... | @@ -97,18 +97,18 @@ if __name__ == '__main__': | ... | @@ -97,18 +97,18 @@ if __name__ == '__main__': |
97 | plt.grid() | 97 | plt.grid() |
98 | plt.plot(scoresTable['precision'],'co--', label='precision', linewidth=1, markersize=4) | 98 | plt.plot(scoresTable['precision'],'co--', label='precision', linewidth=1, markersize=4) |
99 | x,y = maxPoint(scoresTable['precision']) | 99 | x,y = maxPoint(scoresTable['precision']) |
100 | - plt.plot(x, y, 'o', markersize=10) | 100 | + plt.plot(x, y, 'co', markersize=13) |
101 | 101 | ||
102 | plt.plot(scoresTable['f1-score'], 'bo--', label='F1', linewidth=1, markersize=4) | 102 | plt.plot(scoresTable['f1-score'], 'bo--', label='F1', linewidth=1, markersize=4) |
103 | x,y = maxPoint(scoresTable['f1-score']) | 103 | x,y = maxPoint(scoresTable['f1-score']) |
104 | - plt.plot(x, y, 'o', markersize=10) | 104 | + plt.plot(x, y, 'bo', markersize=13) |
105 | 105 | ||
106 | plt.plot(scoresTable['recall'], 'mo--', label='recall' , linewidth=1, markersize=4) | 106 | plt.plot(scoresTable['recall'], 'mo--', label='recall' , linewidth=1, markersize=4) |
107 | x,y = maxPoint(scoresTable['recall']) | 107 | x,y = maxPoint(scoresTable['recall']) |
108 | - plt.plot(x, y, 'o', markersize=10) | 108 | + plt.plot(x, y, 'mo', markersize=13) |
109 | plt.plot(scoresTable['CV'], 'ro--', label='CV' , linewidth=1, markersize=4) | 109 | plt.plot(scoresTable['CV'], 'ro--', label='CV' , linewidth=1, markersize=4) |
110 | x,y = maxPoint(scoresTable['CV']) | 110 | x,y = maxPoint(scoresTable['CV']) |
111 | - plt.plot(x, y, 'o', markersize=10) | 111 | + plt.plot(x, y, 'ro', markersize=13) |
112 | 112 | ||
113 | for k,v in dict(scoresTable).items(): | 113 | for k,v in dict(scoresTable).items(): |
114 | for a,b in zip(range(64), v): | 114 | for a,b in zip(range(64), v): | ... | ... |
-
Please register or login to post a comment