Я маринованный сюжет matplotlib
with open(save_to, 'wb') as file:
pickle.dump(fig, file)
и попробуйте распаковать его как
with open(save_to,'rb') as fid:
ax = pickle.load(fid)
plt.show()
или
with open(save_to,'rb') as fid:
ax = pickle.load(fid)
ax.show()
Но я получаю ошибку
AttributeError: 'Figure' object has no attribute 'stale_callback'
В чем причина?
Код взят из https://scikit -learn.org / stable / auto_examples / model_selection / plot_roc.html
где вместо plt.show () я ее мариную.
спасибо!