Generates an HTML Report from the logged data.
def make_report()
from dvclive import Live
live = Live()
live.log_plot("confusion_matrix", [0, 0, 1, 1], [1, 0, 0, 1])
live.make_report()
On each call, DVCLive will collect all the data logged in {dir}
, generate an
HTML report and save it in {dir}/report.html
.
This function gets called internally on each step
update by default (unless
report
is passed to Live()
with a value other than "html"
).