oinolan commited on
Commit
b97027a
·
1 Parent(s): 085fdaa
Files changed (1) hide show
  1. plots.py +3 -0
plots.py CHANGED
@@ -329,6 +329,9 @@ def plot_optimization_history_from_json(
329
  fig.savefig(
330
  output_path / f"optimization_history_{method}.png", dpi=600, bbox_inches="tight"
331
  )
 
 
 
332
  plt.close(fig)
333
 
334
 
 
329
  fig.savefig(
330
  output_path / f"optimization_history_{method}.png", dpi=600, bbox_inches="tight"
331
  )
332
+ fig.savefig(
333
+ output_path / f"optimization_history_{method}.pdf", dpi=600, bbox_inches="tight"
334
+ )
335
  plt.close(fig)
336
 
337