You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a plot that's rather wide (I used this code below):
#%%
from time import sleep
import numpy as np
from livelossplot import PlotLosses
#%%
liveplot = PlotLosses()
for i in range(20):
liveplot.update({
'accuracy': 1 - np.random.rand() / (i + 2.),
'val_accuracy': 1 - np.random.rand() / (i + 0.5),
'mse': 1. / (i + 2.),
'val_mse': 1. / (i + 0.5)
})
liveplot.draw()
sleep(1.)
Open the plot viewer
export to PDF
Expected result:
Full image is in the PDF.
Actual result:
The text was updated successfully, but these errors were encountered:
Create a plot that's rather wide (I used this code below):
Open the plot viewer
export to PDF
Expected result:
Full image is in the PDF.
Actual result:
The text was updated successfully, but these errors were encountered: