From 34437336d283700a28a1fa4ec636259facc806c6 Mon Sep 17 00:00:00 2001 From: Manos Date: Fri, 1 Oct 2021 04:34:14 +0200 Subject: [PATCH] bgt_cmp_hue: Back to linear --- code/expt/bgt_cmp_hue.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/expt/bgt_cmp_hue.py b/code/expt/bgt_cmp_hue.py index 610341c..096ca65 100644 --- a/code/expt/bgt_cmp_hue.py +++ b/code/expt/bgt_cmp_hue.py @@ -45,8 +45,8 @@ def main(args): plt.xlim(x_i.min() - x_margin, x_i.max() + x_margin) # The y axis plt.ylabel('Mean absolute error') # Set y axis label. - plt.yscale('log') - plt.ylim(1, 10000) + # plt.yscale('log') + plt.ylim(0, 8) # Bar offset x_offset = -(bar_width/2)*(n - 1) @@ -131,7 +131,7 @@ def main(args): # Show plot # plt.show() # Save plot - lmdk_lib.save_plot(path + '.pdf') + lmdk_lib.save_plot(path + '-001.pdf') print('[OK]', flush=True)