Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -83,7 +83,7 @@ if __name__ == '__main__': | ... | @@ -83,7 +83,7 @@ if __name__ == '__main__': |
83 | fig = plt.figure() | 83 | fig = plt.figure() |
84 | fig.set_figheight(13) | 84 | fig.set_figheight(13) |
85 | fig.set_figwidth(20) | 85 | fig.set_figwidth(20) |
86 | - plt.ylim(0.7, 1.1) | 86 | + plt.ylim(0.7, 1) |
87 | plt.xlabel("Runs") | 87 | plt.xlabel("Runs") |
88 | plt.ylabel("score") | 88 | plt.ylabel("score") |
89 | plt.rcParams.update() | 89 | plt.rcParams.update() |
... | @@ -92,7 +92,7 @@ if __name__ == '__main__': | ... | @@ -92,7 +92,7 @@ if __name__ == '__main__': |
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) |
95 | - plt.legend(loc='lower right') | 95 | + plt.legend(loc='upper left') |
96 | plt.xticks(range(64), range(64)) | 96 | plt.xticks(range(64), range(64)) |
97 | #plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) | 97 | #plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) |
98 | #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) | 98 | #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) | ... | ... |
-
Please register or login to post a comment