vicellst-att / utils.py
polejowska's picture
Duplicate from polejowska/vicellst-attention
3370ff8
raw
history blame
No virus
139 Bytes
import io
from PIL import Image
def fig2img(fig):
buf = io.BytesIO()
fig.savefig(buf)
buf.seek(0)
return Image.open(buf)