Showing
2 changed files
with
4 additions
and
4 deletions
... | @@ -88,10 +88,10 @@ if __name__ == '__main__': | ... | @@ -88,10 +88,10 @@ 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=3, markersize=15) | 91 | + plt.plot(scoresTable['precision'],'o--', label='precision', linewidth=3, markersize=8) |
92 | - plt.plot(scoresTable['f1-score'], 'o--', label='F1', linewidth=3, markersize=15) | 92 | + plt.plot(scoresTable['f1-score'], 'o--', label='F1', linewidth=3, markersize=8) |
93 | - plt.plot(scoresTable['recall'], 'o--', label='recall' , linewidth=3, markersize=15) | 93 | + plt.plot(scoresTable['recall'], 'o--', label='recall' , linewidth=3, markersize=8) |
94 | - plt.plot(scoresTable['CV'], 'o--', label='CV' , linewidth=3, markersize=15) | 94 | + plt.plot(scoresTable['CV'], 'o--', label='CV' , linewidth=3, markersize=8) |
95 | plt.legend(loc='lower right') | 95 | plt.legend(loc='lower right') |
96 | #plt.xticks(range(16),['run1', 'run2', 'run3', 'run4', 'run5', 'run6', 'run7', 'run1-NER(9)', 'run2-NER(10)', 'run3-NER(11)', 'run4-NER(12)', 'run5-NER(13)', 'run6-NER(14)', 'run7-NER(15)', 'run8-NER(16)'], rotation=90) | 96 | #plt.xticks(range(16),['run1', 'run2', 'run3', 'run4', 'run5', 'run6', 'run7', 'run1-NER(9)', 'run2-NER(10)', 'run3-NER(11)', 'run4-NER(12)', 'run5-NER(13)', 'run6-NER(14)', 'run7-NER(15)', 'run8-NER(16)'], rotation=90) |
97 | plt.xticks(range(64),['run1_v10', 'run2_v10', 'run3_v10', 'run4_v10', 'run5_v10', 'run6_v10', 'run7_v10', 'run8_v10', | 97 | plt.xticks(range(64),['run1_v10', 'run2_v10', 'run3_v10', 'run4_v10', 'run5_v10', 'run6_v10', 'run7_v10', 'run8_v10', | ... | ... |
-
Please register or login to post a comment