scripts/plot_results.py [56:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if save:
        fig_dirname = "figs/"
        os.makedirs(fig_dirname, exist_ok=True)
        models = '_'.join(sorted(models.keys()))
        plt.savefig(fig_dirname + file_name + '_' + models +'.pdf',
                    format='pdf', bbox_inches='tight')

    if block:
        plt.show(block=False)
        input('Press to close')
        plt.close('all')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scripts/plot_results.py [104:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if save:
        fig_dirname = "figs/"
        os.makedirs(fig_dirname, exist_ok=True)
        models = '_'.join(sorted(models.keys()))
        plt.savefig(fig_dirname + file_name + '_' + models +'.pdf',
                    format='pdf', bbox_inches='tight')
    if block:
        plt.show(block=False)
        input('Press to close')
        plt.close('all')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



