Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
amankishore/sjc
MirageML
/
sjc
like
23
Runtime error
App
Files
Files
Community
7
Fetching metadata from the HF Docker repository...
0b4917d
sjc
/
my
/
utils
/
plot.py
amankishore
Updated app.py
7a11626
over 2 years ago
raw
Copy download link
history
blame
Safe
193 Bytes
import
numpy
as
np
import
matplotlib.pyplot
as
plt
def
mpl_fig_to_buffer
(
fig
):
fig.canvas.draw()
plot = np.array(fig.canvas.renderer.buffer_rgba())
plt.close(fig)
return
plot