Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -137,9 +137,9 @@ if __name__ == '__main__': | ... | @@ -137,9 +137,9 @@ if __name__ == '__main__': |
137 | fig.set_figwidth(20) | 137 | fig.set_figwidth(20) |
138 | plt.xlabel("Runs") | 138 | plt.xlabel("Runs") |
139 | plt.ylabel("score") | 139 | plt.ylabel("score") |
140 | - plt.ylim(-0.2, 1.2) | 140 | + plt.ylim(0.4, 1.2) |
141 | variantTags = [k for k in tags.keys() if len(set(tags[k]))>1 ] | 141 | variantTags = [k for k in tags.keys() if len(set(tags[k]))>1 ] |
142 | - lines = [ 'r^', 'ro', 'g^', 'go', 'b^', 'bo' , 'm^', 'mo', 'c^', 'co', 'ch', 'rh', 'gh', 'bh','mh'] | 142 | + #lines = [ 'r^', 'ro', 'g^', 'go', 'b^', 'bo' , 'm^', 'mo', 'c^', 'co', 'ch', 'rh', 'gh', 'bh','mh'] |
143 | for i,k in enumerate(variantTags): | 143 | for i,k in enumerate(variantTags): |
144 | plt.grid(False) | 144 | plt.grid(False) |
145 | plt.plot(precision[k], lines[i], label=k, linewidth=(15-i)*2) | 145 | plt.plot(precision[k], lines[i], label=k, linewidth=(15-i)*2) | ... | ... |
-
Please register or login to post a comment